nixos-config/modules/home/default.server.nix

10 lines
425 B
Nix
Raw Normal View History

2024-07-15 10:08:16 +02:00
{ ...}: {
imports =
2024-10-17 11:12:37 +02:00
[(import ./git.nix)] # version control
2024-07-15 10:08:16 +02:00
++ [(import ./nvim.nix)] # neovim editor
++ [(import ./packages.server.nix)] # other packages
2024-07-15 10:08:16 +02:00
++ [(import ./scripts/scripts.nix)] # personal scripts
++ [(import ./zsh.nix)] # shell
++ [(import ./tmux.nix)]; # terminal multiplexer
}