Commit 99a06519182a

Vincent Demeester <vincent@sbr.pm>
2023-12-21 15:07:57
users/vincent: add passwordstore configuration…
Next will be to make sure we backup it. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 8feae0b
Changed files (2)
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 ]
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
+  ];
+}