dotfiles/hosts/default.nix

36 lines
804 B
Nix
Raw Normal View History

2023-04-25 20:10:57 +00:00
{
nixpkgs,
self,
outputs,
...
}: let
inputs = self.inputs;
home-manager = inputs.home-manager.nixosModules.home-manager;
homes = ../homes;
in {
nixbox = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
modules = [
# this list defines which files will be imported to be used as "modules" in the system config
./nixbox/configuration.nix
# use the nixos-module for home-manager
home-manager
homes
];
};
2023-04-26 01:16:53 +00:00
nixpad = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
modules = [
# this list defines which files will be imported to be used as "modules" in the system config
./nixpad/configuration.nix
# use the nixos-module for home-manager
home-manager
homes
];
};
2023-04-25 20:10:57 +00:00
}