niksos/homes/jacek/default.nix

27 lines
490 B
Nix

{
config,
lib,
pkgs,
...
}: {
# your home-manager configuration goes in this file
programs = {
zsh.enable = true; # enable zsh on home-manager's end
home-manager.enable = true; # let home-manager enable itself
};
home = {
username = "jacek";
homeDirectory = "/home/jacek";
packages = with pkgs; [
neofetch
tree
git
librewolf-wayland
foot
keepassxc
neovim
];
stateVersion = lib.mkDefault "23.11";
};
}