Update FredOS-Gaming.nix
This commit is contained in:
parent
cfaaa5e38e
commit
e656dc8c6c
1 changed files with 8 additions and 8 deletions
|
|
@ -6,15 +6,15 @@
|
||||||
pkgs = pkgs // {
|
pkgs = pkgs // {
|
||||||
lib32 = pkgs.pkgsi686Linux.pkgs;
|
lib32 = pkgs.pkgsi686Linux.pkgs;
|
||||||
};
|
};
|
||||||
}; # <--- SEMICOLON (Required)
|
}; # <--- REMOVE THE SEMICOLON HERE
|
||||||
|
|
||||||
environment.systemPackages = [ # NO 'with pkgs;'
|
environment.systemPackages = [
|
||||||
pkgs.lutris
|
pkgs.lutris; # Add semicolons to the array elements for robustness
|
||||||
pkgs.adwaita-icon-theme
|
pkgs.adwaita-icon-theme;
|
||||||
pkgs.nix-index
|
pkgs.nix-index;
|
||||||
pkgs.libdecor
|
pkgs.libdecor;
|
||||||
pkgs.lib32.libdecor # This will now work correctly!
|
pkgs.lib32.libdecor;
|
||||||
]; # <--- SEMICOLON (Required)
|
]; # <--- SEMICOLON (Required for environment.systemPackages)
|
||||||
|
|
||||||
hardware.graphics = {
|
hardware.graphics = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue