Separate laptops profile, add password-store

This commit is contained in:
2022-03-03 01:09:02 +00:00
parent 73487f0988
commit 8d1dea1ccf
2 changed files with 4 additions and 2 deletions
+1
View File
@@ -0,0 +1 @@
{ ... }: { programs.password-store.enable = true; }
+3 -2
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 ];
};
}