about summary refs log blame commit diff
path: root/hosts/darwin.nix
blob: 209465b8ff2623308670bdcb4d9255261a0b6b29 (plain) (tree)
1
2
3
4
5
                    
 
                                                
 
                                           









                  
 

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