Add nixpad configuration
This commit is contained in:
parent
d75b912070
commit
352c185687
4 changed files with 209 additions and 0 deletions
|
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue