aboutsummaryrefslogtreecommitdiffstats
path: root/users/hanna/darwin.nix
blob: 49d2876fc41f8e213139337397170679ac1ee226 (plain) (blame)
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
{ config, pkgs, ... }:

{
  users.users.hanna = {
    home = "/Users/hanna";
    shell = pkgs.zsh;
  };

  hjem.users.hanna = {
    enable = true;

    imports = [
      ./configs/ghostty.nix
      ./configs/starship.nix
      ./configs/direnv.nix
      ./configs/claude.nix
      ./configs/helix.nix
      ./configs/zsh.nix
      ./configs/npm.nix
      ./configs/git.nix
      ./configs/bat.nix
      ./configs/xdg.nix
      ./configs/zed.nix
    ];
  };
}