mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
18 lines
1,015 B
Nix
18 lines
1,015 B
Nix
{ ...}: {
|
|
imports =
|
|
[(import ./git.nix)] # version control
|
|
++ [(import ./swaync/default.nix)] # notification panel
|
|
++ [(import ./hyprland)] # 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
|
|
}
|