diff options
author | ene <ene@sils.li> | 2023-02-11 14:55:47 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-11 14:58:04 +0100 |
commit | 7d01bc0001bbd461008230188bd1f65a808b45f6 (patch) | |
tree | a7d5d92a194d79fc8fc3eaacb7bbba8113704b65 /flake.nix | |
parent | Fix: Remove typo from home-manager directory name (diff) | |
download | nixos-config-7d01bc0001bbd461008230188bd1f65a808b45f6.tar.gz nixos-config-7d01bc0001bbd461008230188bd1f65a808b45f6.zip |
Fix: Rename host for clarity and import home-manager
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/flake.nix b/flake.nix index 0389bd86..f2038dad 100644 --- a/flake.nix +++ b/flake.nix @@ -17,18 +17,19 @@ outputs = { self, nixpkgs, + home-manager, strip_js_comments, ... - } @ attrs: { + } @ inputs: { nixosConfigurations.Tiamat = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - specialArgs = attrs; - modules = [./hosts/Tiamat/configuration.nix]; + specialArgs = inputs; + modules = [./hosts/desktop/configuration.nix]; }; nixosConfigurations.Apzu = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - specialArgs = attrs; - modules = [./hosts/Apzu/configuration.nix]; + specialArgs = inputs; + modules = [./hosts/laptop/configuration.nix]; }; }; } |