home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit 99a06519182a1be9024f5571a8fa93442fce413f
parent 8feae0bc9354d5601c999083dc890a283583a2ec
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Thu, 21 Dec 2023 15:07:57 +0100

users/vincent: add passwordstore configuration…

Next will be to make sure we backup it.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Musers/vincent/desktop/default.nix | 1+
Ausers/vincent/desktop/passwordstore.nix | 11+++++++++++
2 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/users/vincent/desktop/default.nix b/users/vincent/desktop/default.nix @@ -12,6 +12,7 @@ in ./keyboard.nix ./mpv.nix ./spotify.nix + ./passwordstore.nix ] ++ optionals nixosConfig.modules.desktop.xorg.enable [ ./xorg.nix ] ++ optionals nixosConfig.profiles.desktop.i3.enable [ ./i3.nix ./xorg.nix ] diff --git a/users/vincent/desktop/passwordstore.nix b/users/vincent/desktop/passwordstore.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: + +{ + programs.password-store = { + enable = true; + package = pkgs.pass-wayland.withExtensions (exts: [ exts.pass-otp exts.pass-genphrase exts.pass-update ]); + }; + home.packages = with pkgs; [ + wofi-pass + ]; +}