From a13cd3a6905e35e6bab63be230f6fbb16144aee6 Mon Sep 17 00:00:00 2001 From: NullBite Date: Thu, 28 Mar 2024 20:00:32 -0400 Subject: [PATCH] home: enable automatic keychain integrations --- home/profile/base.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/home/profile/base.nix b/home/profile/base.nix index 2bef181..38604cf 100644 --- a/home/profile/base.nix +++ b/home/profile/base.nix @@ -44,6 +44,16 @@ in }; }; + programs.keychain = { + enable = lib.mkDefault true; + enableBashIntegration = lib.mkDefault true; + enableZshIntegration = lib.mkDefault true; + extraFlags = [ + "--quiet" + "--systemd" + ]; + }; + # this fixes a lot of theme weirdness home.file.".icons".source = config.lib.file.mkOutOfStoreSymlink "${config.xdg.dataHome}/icons"; home.file.".themes".source = config.lib.file.mkOutOfStoreSymlink "${config.xdg.dataHome}/themes";