aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-25 16:21:46 -0400
committerRosa <rosaontheweb@proton.me>2026-03-25 16:21:46 -0400
commita1bf814a67e191a6b8573335700395e8ab57137f (patch)
tree756f8227efd556e3e9fbd457c3281406ca272393 /flake.nix
parent9f1670e88e11fb08a0d968f40cb9f05ccfb1a140 (diff)
the meowchine
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index a9b3030..5f9a821 100644
--- a/flake.nix
+++ b/flake.nix
@@ -28,7 +28,7 @@
{
additionalModules ? [ ],
hostName,
- system,
+ system ? "x86_64-linux",
}:
nixpkgs.lib.nixosSystem {
modules = [
@@ -46,6 +46,14 @@
{
formatter.x86_64-linux = pkgs.nixfmt;
nixosConfigurations = {
+ the-meowchine = mkSystem {
+ additionalModules = [
+ home-manager.nixosModules.home-manager
+ ];
+
+ hostName = "the-meowchine";
+ };
+
meowbook = mkSystem {
additionalModules = [
disko.nixosModules.disko
@@ -53,7 +61,6 @@
];
hostName = "meowbook";
- system = "x86_64-linux";
};
};
};