summaryrefslogtreecommitdiff
path: root/hosts/caroline/default.nix
blob: 94a5dc2c9c7e9671ecfc0c9e7ae48512472597bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{pkgs, ...}: {
  home-manager.users.seth = {
    home.packages = with pkgs; [
      discord-canary
      iterm2
      spotify
    ];
  };

  getchoo.desktop.homebrew.enable = true;

  networking = rec {
    computerName = "caroline";
    hostName = computerName;
  };

  nix.settings.trusted-users = ["seth"];

  services.tailscale.enable = true;
}