diff options
author | Alan Pearce | 2019-10-05 19:18:02 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-05 19:18:02 +0200 |
commit | d658498b5adf76bfc7329ce4a964d114dcc2c299 (patch) | |
tree | ab7195c97856856a3b31e424a72060ab79c4e59c /user/modules | |
parent | 5a2d7e4085b0461ff38abd9366ff56e00c0bfc42 (diff) | |
download | nixfiles-d658498b5adf76bfc7329ce4a964d114dcc2c299.tar.lz nixfiles-d658498b5adf76bfc7329ce4a964d114dcc2c299.tar.zst nixfiles-d658498b5adf76bfc7329ce4a964d114dcc2c299.zip |
Fix errors in passwords modules
Diffstat (limited to 'user/modules')
-rw-r--r-- | user/modules/passwords.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user/modules/passwords.nix b/user/modules/passwords.nix index b3fbddc3..72493cef 100644 --- a/user/modules/passwords.nix +++ b/user/modules/passwords.nix @@ -1,9 +1,9 @@ { config, pkgs, ... }: -{ environment.systemPackages = with pkgs.unstable; [ +{ + home.packages = with pkgs.unstable; [ keepassx-community rofi-pass - pass pass-otp pwgen ]; |