More home-manager management

This commit is contained in:
Charlotte Van Petegem 2020-09-27 22:14:04 +02:00
parent 10df2301e1
commit f720df9e46
No known key found for this signature in database
GPG key ID: 019E764B7184435A
8 changed files with 61 additions and 50 deletions

View file

@ -6,6 +6,10 @@
];
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = [ pkgs.pass ];
programs.password-store = {
enable = true;
settings = { PASSWORD_STORE_DIR = "$HOME/repos/passwords"; };
};
services.password-store-sync.enable = true;
};
}