about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2024-06-09T16·56+0300
committerclbot <clbot@tvl.fyi>2024-06-09T17·56+0000
commit6414aad6d84fe675e8cc032dada829a00a54e619 (patch)
treed7a2f797c3880a2608387daa3154442d742a9a5b
parentb703b14576a42271f59d5e7ed4f6593d3101fbf7 (diff)
fix(tazjin/nixos): let home-manager overwrite files r/8231
Chromium or something keeps barfing conflicting mime-types files, which causes
the entire home-manager activation to fail.

I'd be fine with it just overwriting those files, but couldn't be bothered to
figure out how to configure that, hence just use the fix from its error message.

Change-Id: I2e4e0807339dd426b3d99578d0d004529403a882
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11769
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
-rw-r--r--users/tazjin/nixos/modules/home-config.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/users/tazjin/nixos/modules/home-config.nix b/users/tazjin/nixos/modules/home-config.nix
index 8e85847b74..77fe3f69bc 100644
--- a/users/tazjin/nixos/modules/home-config.nix
+++ b/users/tazjin/nixos/modules/home-config.nix
@@ -14,6 +14,7 @@
 
   nix.settings.trusted-users = [ "tazjin" ];
 
+  home-manager.backupFileExtension = "backup";
   home-manager.useGlobalPkgs = true;
   home-manager.users.tazjin = with depot.users.tazjin;
     home."${config.networking.hostName}" or home.shared;