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

11 lines
496 B
Nix
Raw Normal View History

2024-07-15 10:08:16 +02:00
{ ...}: {
imports =
[(import ./bat.nix)] # better cat command
++ [(import ./git.nix)] # version control
++ [(import ./nvim.nix)] # neovim editor
2024-07-15 10:20:18 +02:00
++ [(import ./packages.violet.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
}