-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
19 lines (19 loc) · 1.05 KB
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ ...}: {
imports =
[(import ./git.nix)] # version control
++ [(import ./swaync/default.nix)] # notification panel
++ [(import ./hyprland)] # window manager
++ [(import ./sway)] # window manager
++ [(import ./kitty.nix)] # terminal
++ [(import ./mako.nix)] # notification deamon
++ [(import ./nvim.nix)] # neovim editor
++ [(import ./zathura.nix)] # neovim editor
++ [(import ./packages.nix)] # other packages
++ [(import ./scripts/scripts.nix)] # personal scripts
++ [(import ./swaylock.nix)] # lock screen
++ [(import ./vscodium.nix)] # vscode forck
++ [(import ./waybar)] # status bar
++ [(import ./wofi.nix)] # launcher
++ [(import ./zsh.nix)] # shell
++ [(import ./tmux.nix)]; # terminal multiplexer
}