diff options
author | ene <ene@sils.li> | 2023-02-11 16:35:42 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-11 16:35:42 +0100 |
commit | c0ec18cbd4a4e49a94114414bbee3c8a747d8e13 (patch) | |
tree | 065f21635caee7c41f7fa67e101622c7ae063500 /flake.nix | |
parent | Fix: Rename host for clarity and import home-manager (diff) | |
download | nixos-config-c0ec18cbd4a4e49a94114414bbee3c8a747d8e13.zip |
Feat(home-manager): Make the home configuration better
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix index f2038dad..7514aeca 100644 --- a/flake.nix +++ b/flake.nix @@ -24,12 +24,12 @@ nixosConfigurations.Tiamat = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = inputs; - modules = [./hosts/desktop/configuration.nix]; - }; - nixosConfigurations.Apzu = nixpkgs.lib.nixosSystem { - system = "x86_64-linux"; - specialArgs = inputs; - modules = [./hosts/laptop/configuration.nix]; + modules = [./hosts/desktop/configuration.nix (import ./home-manager/home.nix {})]; }; + # nixosConfigurations.Apzu = nixpkgs.lib.nixosSystem { + # system = "x86_64-linux"; + # specialArgs = inputs; + # modules = [./hosts/laptop/configuration.nix]; + # }; }; } |