about summary refs log tree commit diff
path: root/nix/hosts/caladan/home_hydra.nix
blob: 4834b678f8517fe37ca2fc7cd934944581b1d043 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs, ... }:

{
  home = {
    stateVersion = "22.11";
    username = "hydra";
    homeDirectory = "/Users/hydra";
  };

  programs = {
    # let home-manager install and manage itself
    home-manager.enable = true;
  };

  home.packages = with pkgs; [ tailscale ];

  services.openssh.enable = true;
}