about summary refs log blame commit diff
path: root/hosts/darwin.nix
blob: 61a905544da1682c70a65330c543f6d0871a1628 (plain) (tree)
1
2
3
4
5
6
7
8
 



       
                                                
 
                                           









                  
 

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