Files
nix/homes/x86_64-linux/yadunut@nut-gc2/default.nix

20 lines
215 B
Nix

{
lib,
pkgs,
config,
...
}:
{
zsh.enable = true;
neovim.enable = true;
home.packages = with pkgs; [
rsync
zellij
];
home.stateVersion = "25.11";
programs.home-manager.enable = true;
}