Update FredOS-Gaming.nix

This commit is contained in:
ediblerope 2025-12-10 13:27:10 +00:00 committed by GitHub
parent 492ceeefb7
commit d704e3e553
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,6 +4,7 @@
config = lib.mkIf (config.networking.hostName == "FredOS-Gaming") { config = lib.mkIf (config.networking.hostName == "FredOS-Gaming") {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
lutris lutris
kdePackages.breeze # Add breeze to system packages too
]; ];
programs.steam = { programs.steam = {
@ -16,6 +17,12 @@
}; };
}; };
# Set cursor theme for Steam
environment.sessionVariables = {
XCURSOR_THEME = "breeze_cursors";
XCURSOR_SIZE = "24";
};
system.autoUpgrade = { system.autoUpgrade = {
enable = true; enable = true;
dates = "daily"; dates = "daily";