diff --git a/home/passwords.nix b/home/passwords.nix new file mode 100644 index 0000000..c4a6d5f --- /dev/null +++ b/home/passwords.nix @@ -0,0 +1 @@ +{ ... }: { programs.password-store.enable = true; } diff --git a/home/profiles.nix b/home/profiles.nix index f1f5474..890e027 100644 --- a/home/profiles.nix +++ b/home/profiles.nix @@ -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 ]; }; }