From db35ebd33fddababf95c320d961e04aa742bedb3 Mon Sep 17 00:00:00 2001 From: ahwx Date: Mon, 9 Feb 2026 22:38:16 +0100 Subject: [PATCH] feat: adds `default.azalea.nix` --- modules/home/default.azalea.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 modules/home/default.azalea.nix diff --git a/modules/home/default.azalea.nix b/modules/home/default.azalea.nix new file mode 100644 index 0000000..0bb0cc2 --- /dev/null +++ b/modules/home/default.azalea.nix @@ -0,0 +1,15 @@ +{ ... }: +{ + imports = + [ (import ./git.nix) ] + ++ [ (import ./htop.nix) ] + ++ [ (import ./kitty.nix) ] + ++ [ (import ./nvim.nix) ] + ++ [ (import ./zathura.nix) ] + ++ [ (import ./packages.nix) ] + ++ [ (import ./scripts/scripts.nix) ] + ++ [ (import ./ssh.nix) ] + ++ [ (import ./zsh.nix) ] + ++ [ (import ./qutebrowser.nix) ] + ++ [ (import ./tmux.nix) ]; +}