diff options
author | ene <ene@sils.li> | 2023-02-04 22:17:24 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-04 22:22:59 +0100 |
commit | a433b7df295f924bc3259fdb7ece389a31ae3181 (patch) | |
tree | d30708b708e631ae13602fc4f0f68968df934d4c /flake.nix | |
parent | Feat: New host (diff) | |
download | nixos-config-a433b7df295f924bc3259fdb7ece389a31ae3181.tar.gz nixos-config-a433b7df295f924bc3259fdb7ece389a31ae3181.zip |
Feat: Reworked the Filesystem configuration
This reduces the unnecessary complexity of the whole fileSystemLayouts.nix file.
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix index f0664d36..65a6f08c 100644 --- a/flake.nix +++ b/flake.nix @@ -12,10 +12,15 @@ nixpkgs, ... } @ attrs: { - nixosConfigurations.IDOHVE = nixpkgs.lib.nixosSystem { + nixosConfigurations.Tiamat = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = attrs; - modules = [./hosts/IDOHVE/configuration.nix]; + modules = [./hosts/Tiamat/configuration.nix]; + }; + nixosConfigurations.Apzu = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = attrs; + modules = [./hosts/Apzu/configuration.nix]; }; }; } |