nixos-config/modules/home/default.nix

20 lines
1.1 KiB
Nix
Raw Normal View History

{ ...}: {
2023-11-05 11:40:44 +01:00
imports =
[(import ./bat.nix)] # better cat command
2024-05-24 23:16:01 +02:00
++ [(import ./git.nix)] # version control
2024-10-12 13:08:00 +02:00
++ [(import ./swaync/default.nix)] # notification panel
2024-04-13 13:53:07 +02:00
++ [(import ./hyprland)] # window manager
++ [(import ./kitty.nix)] # terminal
2024-04-06 14:02:42 +02:00
++ [(import ./mako.nix)] # notification deamon
2024-04-13 13:53:07 +02:00
++ [(import ./nvim.nix)] # neovim editor
2024-10-14 12:03:05 +02:00
++ [(import ./zathura.nix)] # neovim editor
2024-04-13 13:53:07 +02:00
++ [(import ./packages.nix)] # other packages
2024-04-06 14:02:42 +02:00
++ [(import ./scripts/scripts.nix)] # personal scripts
2024-04-13 13:53:07 +02:00
++ [(import ./swaylock.nix)] # lock screen
++ [(import ./vscodium.nix)] # vscode forck
++ [(import ./waybar)] # status bar
++ [(import ./wofi.nix)] # launcher
2024-06-21 10:33:34 +02:00
++ [(import ./zsh.nix)] # shell
++ [(import ./tmux.nix)]; # terminal multiplexer
2023-11-05 11:40:44 +01:00
}