about summary refs log blame commit diff
path: root/hosts/darwin.nix
blob: 8b0e9aff5b77f65eed293ce061c853727dd89eb3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
                    
 
                                                
 









                                           

      

                                    
{ 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;
}