diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2023-05-28 13:43:50 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2023-05-28 13:43:50 +0200 |
commit | 8a81215522b1e6d2ee09523b8d0b624cc29eb345 (patch) | |
tree | 50a8d658a4ff43a53131d12a9dbfb08b5f682119 | |
parent | Hosts: Phobos: Remove clion package (diff) | |
download | nixos-config-8a81215522b1e6d2ee09523b8d0b624cc29eb345.tar.gz nixos-config-8a81215522b1e6d2ee09523b8d0b624cc29eb345.tar.bz2 nixos-config-8a81215522b1e6d2ee09523b8d0b624cc29eb345.zip |
Home: Add libsecret backend
-rw-r--r-- | hosts/home.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index a29da70..0e3614c 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -104,6 +104,8 @@ maxCacheTtlSsh = 86400; }; + pass-secret-service.enable = true; + emacs = { enable = true; startWithUserSession = true; @@ -358,6 +360,8 @@ configFile."waybar/".source = "${dotfiles}/waybar/"; configFile."zathura/zathurarc".source = "${dotfiles}/zathurarc"; configFile."dunst/dunstrc".source = "${dotfiles}/dunstrc"; + + dataFile."password-store/.gpg-id".text = lib.head (builtins.attrNames secrets.email); }; home.file = { |