blob: 61a905544da1682c70a65330c543f6d0871a1628 (
plain) (
tree)
|
|
{
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;
}
|