diff --git a/modules/home/default.nix b/modules/home/default.nix index 212a7b9..230014b 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -3,6 +3,7 @@ [(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 diff --git a/modules/home/sway/default.nix b/modules/home/sway/default.nix new file mode 100644 index 0000000..0296bda --- /dev/null +++ b/modules/home/sway/default.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + swayfx + autotiling + ]; +}