Update FredOS-Gaming.nix

This commit is contained in:
ediblerope 2025-12-09 15:54:26 +00:00 committed by GitHub
parent c8b03c0b2e
commit cfaaa5e38e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;