From cfaaa5e38e85ca9a39702453646226f23a04d5e4 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Tue, 9 Dec 2025 15:54:26 +0000 Subject: [PATCH] Update FredOS-Gaming.nix --- hosts/FredOS-Gaming.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/hosts/FredOS-Gaming.nix b/hosts/FredOS-Gaming.nix index 01a8471..265167f 100644 --- a/hosts/FredOS-Gaming.nix +++ b/hosts/FredOS-Gaming.nix @@ -8,13 +8,13 @@ }; }; # <--- SEMICOLON (Required) - environment.systemPackages = with pkgs; [ - lutris - adwaita-icon-theme - nix-index - libdecor - pkgs.lib32.libdecor - ]; # <--- SEMICOLON (Required) + environment.systemPackages = [ # NO 'with pkgs;' +      pkgs.lutris +      pkgs.adwaita-icon-theme +      pkgs.nix-index +      pkgs.libdecor +      pkgs.lib32.libdecor # This will now work correctly! +    ]; # <--- SEMICOLON (Required) hardware.graphics = { enable = true;