Flake for my NixOS devices
at silly-iso 26 lines 491 B view raw
1{...}: { 2 pkgs, 3 config, 4 lib, 5 ... 6}: { 7 options.cow.games.enable = lib.mkEnableOption "playing games with Steam"; 8 9 config = lib.mkIf config.cow.games.enable { 10 home.packages = with pkgs; [ 11 steam 12 cemu 13 owmods-cli 14 owmods-gui 15 prismlauncher 16 ]; 17 18 cow.imperm.keepCache = [ 19 ".local/share/Steam" 20 ".local/share/ow-mod-man" 21 ".local/share/OuterWildsModManager" 22 ".local/share/PrismLauncher" 23 ".local/share/Cemu" 24 ]; 25 }; 26}