From 6414aad6d84fe675e8cc032dada829a00a54e619 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 9 Jun 2024 19:56:41 +0300 Subject: fix(tazjin/nixos): let home-manager overwrite files 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 Tested-by: BuildkiteCI Reviewed-by: tazjin --- users/tazjin/nixos/modules/home-config.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/users/tazjin/nixos/modules/home-config.nix b/users/tazjin/nixos/modules/home-config.nix index 8e85847b746c..77fe3f69bcd2 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; -- cgit 1.4.1