summaryrefslogtreecommitdiffstats
path: root/hjem-darwin.nix
blob: ac3bab9f9f920f7b596c0f800cc0f1160a443eb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  config,
  pkgs,
  username,
  ...
}: {
  imports = [
  ];

  hjem.users.${username} = {
    directory = "/Users/${username}";
    files = {
      ".config/ghostty/config.ghostty".source = ./dotfiles/ghostty/config.ghostty;
    };

    packages = with pkgs; [
    ];
  };
}