From 34f0d64e640461d328be8d81b6abf11556f5b1d1 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 14 Nov 2024 00:42:51 +0100 Subject: [PATCH] feat: add sway since that does seem to work with all 3 external displays :sob: --- modules/home/default.nix | 1 + modules/home/sway/default.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 modules/home/sway/default.nix 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 + ]; +}