Add nixpad configuration

This commit is contained in:
Frankie B 2023-04-26 02:16:53 +01:00
commit 352c185687
4 changed files with 209 additions and 0 deletions

View file

@ -20,4 +20,16 @@ in {
homes
];
};
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
];
};
}