Refactor the whole configuration

Reviewed-on: #1
This commit is contained in:
caem 2025-02-01 14:05:15 +01:00
parent fb5d4d46f8
commit 6cb66d86d2
153 changed files with 2078 additions and 3094 deletions

View file

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