update steamos and add cleanup

This commit is contained in:
wieerwill 2024-12-01 11:29:55 +01:00
parent 8b846b1811
commit 30525a2dc6
2 changed files with 10 additions and 3 deletions

1
cleanCache.sh Normal file
View File

@ -0,0 +1 @@
rm -r .local/share/Steam/config/htmlcache/

View File

@ -9,10 +9,11 @@
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
( (
let revision = "e74e57a37de55ecfdc62f49fe5a7463b2a52499a"; in #let revision = "e74e57a37de55ecfdc62f49fe5a7463b2a52499a"; in
let revision = "98a61cf0708885abddebc6938ca7282928981d5e"; in
builtins.fetchTarball { builtins.fetchTarball {
url = "https://github.com/Jovian-Experiments/Jovian-NixOS/archive/${revision}.tar.gz"; url = "https://github.com/Jovian-Experiments/Jovian-NixOS/archive/${revision}.tar.gz";
sha256 = "sha256:184zvpfcxzspai0mjmq5wfh9n6gjzx0430ygq5r1z1b9j59fhd5r"; sha256 = "sha256:0f1c3ilr9rm6jrs3nfhvf8ni0jccfy1810s6a94iywa9416w1k7c";
} + "/modules" } + "/modules"
) )
]; ];
@ -32,7 +33,8 @@
}; };
decky-loader = { decky-loader = {
enable = true; enable = true;
user = "wieerwill"; #extraPackages = [pkgs.curl pkgs.unzip];
#user = "wieerwill";
}; };
}; };
programs.xwayland.enable = true; programs.xwayland.enable = true;
@ -41,6 +43,10 @@
wrapperFeatures.gtk = true; wrapperFeatures.gtk = true;
}; };
programs.light.enable = true; programs.light.enable = true;
nixpkgs.config.permittedInsecurePackages = [
"electron-27.3.11"
];
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;