nixos-config/modules/home/default.nix

18 lines
938 B
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-04-13 13:53:07 +02:00
++ [(import ./gtk.nix)] # gtk theme
++ [(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
++ [(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
++ [(import ./zsh.nix)]; # shell
2023-11-05 11:40:44 +01:00
}