Compare commits

...

2 Commits

View File

@@ -70,6 +70,13 @@
# optimize the store # optimize the store
optimise.automatic = true; optimise.automatic = true;
# auto garbage collect old generations
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
# enable flakes! # enable flakes!
settings.experimental-features = [ settings.experimental-features = [
"nix-command" "nix-command"
@@ -127,6 +134,9 @@
# 1gb huge pages # 1gb huge pages
"hugepagesz=1G" "hugepagesz=1G"
"hugepages=3" "hugepages=3"
# disable compute wave store and resume — workaround for amdgpu MES hangs/freezes
"amdgpu.cwsr_enable=0"
]; ];
}; };