summaryrefslogtreecommitdiff
path: root/nixos/flake.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-04-05 13:14:31 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-04-05 14:29:48 +0200
commite185b7f874566c66fd97f158a457c4c64d0628ce (patch)
treeb242707378575c3aa286b4c3a7f8b198672e4440 /nixos/flake.nix
parent45ec0396b4d56798f39254e9ef31b9c144e681fd (diff)
add the new laptop install
Diffstat (limited to 'nixos/flake.nix')
-rw-r--r--nixos/flake.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/nixos/flake.nix b/nixos/flake.nix
index f5e1620..c596032 100644
--- a/nixos/flake.nix
+++ b/nixos/flake.nix
@@ -32,5 +32,16 @@
}
];
};
+ nixosConfigurations.apocalypse = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ modules = [
+ ./hosts/apocalypse
+ ./desktop
+ home-manager.nixosModules.home-manager {
+ home-manager.useGlobalPkgs = true;
+ home-manager.useUserPackages = true;
+ }
+ ];
+ };
};
}