about summary refs log tree commit diff
path: root/hosts/darwin.nix
blob: 61a905544da1682c70a65330c543f6d0871a1628 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  pkgs,
  user,
  ...
}: {
  users.users."${user}".home = "/Users/${user}";

  environment.systemPackages = with pkgs; [
    neovim-nightly
    ripgrep
    fd
    tmux
    yt-dlp
    pfetch
    fzf
    comma
    moreutils
  ];

  services.nix-daemon.enable = true;
}