about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-04-16 07:44:33 +0200
committerSoispha <soispha@vhack.eu>2023-05-09 19:30:47 +0200
commit9cdc7c60c7d21a941b2d85b08bcfad1d78b3c3b9 (patch)
tree1a6d24cdf4df2c1447569325a691bf537ebcd150
parentFix(hm/conf/neomutt): Only update imap, when starting neomutt (diff)
downloadnixos-config-9cdc7c60c7d21a941b2d85b08bcfad1d78b3c3b9.tar.gz
nixos-config-9cdc7c60c7d21a941b2d85b08bcfad1d78b3c3b9.zip
Fix(hm/conf/mbsync): Hide .mbsyncrc config file
Diffstat (limited to '')
-rw-r--r--home-manager/config/lf/colors12
-rw-r--r--home-manager/config/mbsync/default.nix3
2 files changed, 5 insertions, 10 deletions
diff --git a/home-manager/config/lf/colors b/home-manager/config/lf/colors
index c4b6417b..b2289b4e 100644
--- a/home-manager/config/lf/colors
+++ b/home-manager/config/lf/colors
@@ -59,24 +59,18 @@ ex      01;31;44    # EXEC
 fi      00          # FILE
 
 # links
-# ~/.librewolf      01;34
+~/.mbsyncrc       01;34
 ~/.cups           01;34
 ~/.mozilla        01;34
-#~/.pki            01;34
 ~/.ssh            01;34
-#~/.lesskey        01;34
-#~/.pulse-cookie   01;34
 
 ~/.steampid       01;34
 ~/.steam          01;34
 ~/.steampath      01;34
 
 # nix
-~/.nix-profile      01;34
-~/.nix-defexpr      01;34
-
-# can now be removed
-~/.indentconfig.yaml      01;34
+~/.nix-profile    01;34
+~/.nix-defexpr    01;34
 
 # archives or compressed (dircolors defaults)
 *.tar   01;31
diff --git a/home-manager/config/mbsync/default.nix b/home-manager/config/mbsync/default.nix
index f0b5e9f5..bcc8b89f 100644
--- a/home-manager/config/mbsync/default.nix
+++ b/home-manager/config/mbsync/default.nix
@@ -9,7 +9,8 @@
   };
   services.mbsync = {
     enable = true;
-    configFile = "${config.xdg.configHome}/mbsync/mbsync.conf";
+    # TODO enable after isync 1.5 drops
+    #configFile = "${config.xdg.configHome}/mbsync/mbsync.conf";
   };
   # Disable the timer, and only activate it on neomutt start
   systemd.user.timers.mbsync = lib.mkForce {};