This commit is contained in:
Aleksandr Lebedev 2024-12-17 19:19:20 +01:00
parent 1306f250fa
commit 388c587fdf

View file

@ -14,7 +14,7 @@
kylekrein.services.autoUpgrade = { kylekrein.services.autoUpgrade = {
enable = true; enable = true;
pushUpdates = if hwconfig.hostname == "${username}-homepc" then true else false; pushUpdates = if hwconfig.hostname == "${username}-homepc" then true else false;
configDir = "/home/${username}/nixos-config"; configDir = "${if hwconfig.useImpermanence then "/persist/nixos-config" else "/home/${username}/nixos-config"}";
user = username; user = username;
}; };
@ -247,7 +247,7 @@
enable = true; enable = true;
clean.enable = true; clean.enable = true;
clean.extraArgs = "--keep-since 4d --keep 3"; clean.extraArgs = "--keep-since 4d --keep 3";
flake = "/home/${username}/nixos-config"; flake = "${if hwconfig.useImpermanence then "/persist/nixos-config" else "/home/${username}/nixos-config"}";
}; };
#https://discourse.nixos.org/t/dolphin-does-not-have-mime-associations/48985/3 #https://discourse.nixos.org/t/dolphin-does-not-have-mime-associations/48985/3
# This fixes the unpopulated MIME menus # This fixes the unpopulated MIME menus