Update FredOS-Gaming.nix

This commit is contained in:
ediblerope 2025-12-10 20:08:07 +00:00 committed by GitHub
parent d704e3e553
commit d40e976985
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,7 +4,7 @@
config = lib.mkIf (config.networking.hostName == "FredOS-Gaming") {
environment.systemPackages = with pkgs; [
lutris
kdePackages.breeze # Add breeze to system packages too
adwaita-icon-theme
];
programs.steam = {
@ -12,14 +12,14 @@
remotePlay.openFirewall = true;
package = pkgs.steam.override {
extraPkgs = pkgs: with pkgs; [
kdePackages.breeze
adwaita-icon-theme
];
};
};
# Set cursor theme for Steam
# Set cursor theme for Steam and games
environment.sessionVariables = {
XCURSOR_THEME = "breeze_cursors";
XCURSOR_THEME = "Adwaita";
XCURSOR_SIZE = "24";
};