refactor(nixos): move configuration files to their own directories for cleaner file structure
This commit is contained in:
parent
22a4b3b720
commit
938f4e788f
4 changed files with 3 additions and 3 deletions
|
@ -16,12 +16,12 @@
|
|||
nixosConfigurations.nemesis = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./configuration.nix
|
||||
./hosts/nemesis
|
||||
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.rafiq = import ./home.nix;
|
||||
home-manager.users.rafiq = import ./users/rafiq;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
# };
|
||||
|
||||
home.file."bin" = {
|
||||
source = ./scripts;
|
||||
source = ../../scripts;
|
||||
recursive = true;
|
||||
executable = true;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue