Add automatic backup configuration for home-manager

- Set home-manager.backupFileExtension to 'backup'
- Automatically backs up files before home-manager overwrites them
- Prevents data loss when managing Firefox profiles.ini
This commit is contained in:
DannyDannyDanny 2026-02-01 15:03:45 +01:00
parent 9b6d5e51dc
commit a8f2a59db5

View file

@ -66,6 +66,8 @@
({ lib, ... }: {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
# Automatically backup files before home-manager overwrites them
home-manager.backupFileExtension = "backup";
home-manager.users.danny = { ... }: {
# Force an absolute path even if another module sets a bad value.