nix/home/default.nix
2025-03-03 23:10:07 -06:00

35 lines
472 B
Nix

{
inputs,
lib,
config,
pkgs,
system,
...
}: {
imports = [
./ssh
./git.nix
./gui.nix
./latex.nix
];
programs.neovim.enable = true;
home.packages = with pkgs; [
gpclient
openconnect
emacs
fd
ripgrep
yazi
tree
gnumake
texinfo
];
fonts.fontconfig.enable = true;
programs.home-manager.enable = true;
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
home.stateVersion = "25.05";
}