Separate laptops profile, add password-store

This commit is contained in:
Sam W 2022-03-02 20:02:27 +00:00
parent 73487f0988
commit 8d1dea1ccf
2 changed files with 4 additions and 2 deletions

1
home/passwords.nix Normal file
View File

@ -0,0 +1 @@
{ ... }: { programs.password-store.enable = true; }

View File

@ -1,5 +1,6 @@
{
dev = { ... }: {
imports = [ ./default.nix ./git.nix ./macs.nix ./rust.nix ./vim.nix ];
dev = { ... }: { imports = [ ./default.nix ./git.nix ./rust.nix ./vim.nix ]; };
laptop = { ... }: {
imports = [ ./default.nix ./git.nix ./macs.nix ./rust.nix ./vim.nix ./passwords.nix ];
};
}