diff options
author | Alan Pearce | 2019-10-05 18:01:57 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-05 18:01:57 +0200 |
commit | 22f3225547ae0dce900a1cd39f5ccce29e9552ed (patch) | |
tree | aedd3c3eea249ec97f68f138b35777c72b79b7a8 /user | |
parent | c3a2956e94cfec917ed289ee18781d78dc7be6a9 (diff) | |
download | nixfiles-22f3225547ae0dce900a1cd39f5ccce29e9552ed.tar.lz nixfiles-22f3225547ae0dce900a1cd39f5ccce29e9552ed.tar.zst nixfiles-22f3225547ae0dce900a1cd39f5ccce29e9552ed.zip |
Move password module to user
Diffstat (limited to 'user')
-rw-r--r-- | user/modules/passwords.nix | 10 | ||||
-rw-r--r-- | user/prefect.nix | 1 | ||||
-rw-r--r-- | user/satoshipad.nix | 1 |
3 files changed, 12 insertions, 0 deletions
diff --git a/user/modules/passwords.nix b/user/modules/passwords.nix new file mode 100644 index 00000000..b3fbddc3 --- /dev/null +++ b/user/modules/passwords.nix @@ -0,0 +1,10 @@ +{ config, pkgs, ... }: + +{ environment.systemPackages = with pkgs.unstable; [ + keepassx-community + rofi-pass + pass + pass-otp + pwgen + ]; +} diff --git a/user/prefect.nix b/user/prefect.nix index 8a21b04a..0e0a3a1f 100644 --- a/user/prefect.nix +++ b/user/prefect.nix @@ -13,6 +13,7 @@ ./modules/javascript.nix ./modules/nixos.nix ./modules/rofi.nix + ./modules/passwords.nix ./modules/satoshipay.nix ./modules/sxhkd.nix ./modules/tabnine.nix diff --git a/user/satoshipad.nix b/user/satoshipad.nix index e76693d2..4ccccb30 100644 --- a/user/satoshipad.nix +++ b/user/satoshipad.nix @@ -15,6 +15,7 @@ ./modules/msmtp.nix ./modules/nixos.nix ./modules/rofi.nix + ./modules/passwords.nix ./modules/satoshipay.nix ./modules/sxhkd.nix ./modules/tabnine.nix |