nixos-config/modules/home/default.nix

21 lines
1.1 KiB
Nix
Raw Normal View History

{ ...}: {
2023-11-05 11:40:44 +01:00
imports =
2024-10-17 11:13:28 +02:00
[(import ./git.nix)] # version control
2024-10-12 13:08:00 +02:00
++ [(import ./swaync/default.nix)] # notification panel
++ [(import ./fonts.nix)] # fonts
2024-04-13 13:53:07 +02:00
++ [(import ./hyprland)] # window manager
++ [(import ./sway)] # window manager
2024-04-13 13:53:07 +02:00
++ [(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-17 11:13:28 +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
}