From a433b7df295f924bc3259fdb7ece389a31ae3181 Mon Sep 17 00:00:00 2001 From: ene Date: Sat, 4 Feb 2023 22:17:24 +0100 Subject: Feat: Reworked the Filesystem configuration This reduces the unnecessary complexity of the whole fileSystemLayouts.nix file. --- flake.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'flake.nix') 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]; }; }; } -- cgit 1.4.1