diff options
Diffstat (limited to 'hosts/caroline')
| -rw-r--r-- | hosts/caroline/default.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/hosts/caroline/default.nix b/hosts/caroline/default.nix new file mode 100644 index 0000000..343c1cb --- /dev/null +++ b/hosts/caroline/default.nix @@ -0,0 +1,26 @@ +{pkgs, ...}: { + imports = [ + ../../users/seth + ]; + + home-manager.users.seth = { + imports = [ + ../../users/seth/programs/firefox.nix + ]; + + home.packages = with pkgs; [ + discord-canary + iterm2 + spotify + ]; + }; + + networking = rec { + computerName = "caroline"; + hostName = computerName; + }; + + nix.settings.trusted-users = ["seth"]; + + services.tailscale.enable = true; +} |
