diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-03-25 16:21:46 -0400 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-03-25 16:21:46 -0400 |
| commit | a1bf814a67e191a6b8573335700395e8ab57137f (patch) | |
| tree | 756f8227efd556e3e9fbd457c3281406ca272393 /flake.nix | |
| parent | 9f1670e88e11fb08a0d968f40cb9f05ccfb1a140 (diff) | |
the meowchine
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -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"; }; }; }; |
