aboutsummaryrefslogtreecommitdiffstats
path: root/flake
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-04 22:17:24 +0100
committerene <ene@sils.li>2023-02-04 22:22:59 +0100
commita433b7df295f924bc3259fdb7ece389a31ae3181 (patch)
treed30708b708e631ae13602fc4f0f68968df934d4c /flake
parentFeat: New host (diff)
downloadnixos-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.nix9
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];
};
};
}