This commit is contained in:
caem 2025-01-25 17:49:46 +01:00
parent 7266529146
commit a0640360f0
Signed by: caem
GPG key ID: 69A830D03203405F

View file

@ -1,5 +1,21 @@
{ ... }:
{ pkgs, username, ... }:
{
environment.persistence."/nix/persist" = {
users."${username}".directories = [
".local/steam_home"
".local/share/osu"
];
};
environment.systemPackages = with pkgs; [
protonup-qt
protontricks
osu-lazer-bin
];
programs.steam = {
enable = true;
gamescopeSession.enable = true;
};
}