summaryrefslogtreecommitdiff
path: root/hosts/caroline/default.nix
blob: 343c1cbbe7a07deb7aef15c62e963deb7ac6c078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
}