From cb5fa2f44ccf7df8f8812bb7d80bb2854b55eb39 Mon Sep 17 00:00:00 2001 From: NullBite Date: Mon, 15 Jan 2024 10:46:23 +0100 Subject: [PATCH] ooprs i forgor system :3 --- flake.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 0696b79..d01d7b1 100644 --- a/flake.nix +++ b/flake.nix @@ -87,7 +87,7 @@ }; nixosConfigurations = { - slab = lib.nixosSystem { + slab = lib.nixosSystem rec { system = "x86_64-linux"; modules = [ ./hosts/slab/configuration.nix @@ -97,10 +97,13 @@ ./system/fragments/opengl.nix ./system/gaming.nix # ./system/hyprland.nix - (homeManagerInit {module = import ./hosts/slab/home.nix;}) + (homeManagerInit { + module = import ./hosts/slab/home.nix; + inherit system; + }) ]; }; - nullbox = lib.nixosSystem { + nullbox = lib.nixosSystem rec { system = "x86_64-linux"; modules = [ ./hosts/nullbox/configuration.nix @@ -108,7 +111,10 @@ ./system/plasma.nix ./system/fragments/hardware/nvidia-modeset.nix ./system/gaming.nix - (homeManagerInit {module = import ./hosts/nullbox/home.nix;}) + (homeManagerInit { + module = import ./hosts/nullbox/home.nix; + inherit system; + }) ]; }; };