rename home-manager dir to home
This commit is contained in:
parent
def4a69b5d
commit
c40c333078
6 changed files with 3 additions and 3 deletions
|
@ -37,7 +37,7 @@
|
||||||
|
|
||||||
overlays = import ./overlays { inherit inputs outputs; };
|
overlays = import ./overlays { inherit inputs outputs; };
|
||||||
nixosModules = import ./modules/nixos;
|
nixosModules = import ./modules/nixos;
|
||||||
homeManagerModules = import ./modules/home-manager;
|
homeManagerModules = import ./modules/home;
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
enoko = lib.nixosSystem {
|
enoko = lib.nixosSystem {
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
extraSpecialArgs = { inherit inputs outputs username; };
|
extraSpecialArgs = { inherit inputs outputs username; };
|
||||||
modules = [
|
modules = [
|
||||||
./home-manager/home.nix
|
./home/home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
extraSpecialArgs = { inherit inputs outputs username; };
|
extraSpecialArgs = { inherit inputs outputs username; };
|
||||||
modules = [
|
modules = [
|
||||||
./home-manager/home.nix
|
./home/home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue