feat: add sway since that does seem to work with all 3 external displays 😭

This commit is contained in:
Ahwx 2024-11-14 00:42:51 +01:00
parent 057d8624e4
commit 34f0d64e64
2 changed files with 7 additions and 0 deletions

View file

@ -3,6 +3,7 @@
[(import ./git.nix)] # version control [(import ./git.nix)] # version control
++ [(import ./swaync/default.nix)] # notification panel ++ [(import ./swaync/default.nix)] # notification panel
++ [(import ./hyprland)] # window manager ++ [(import ./hyprland)] # window manager
++ [(import ./sway)] # window manager
++ [(import ./kitty.nix)] # terminal ++ [(import ./kitty.nix)] # terminal
++ [(import ./mako.nix)] # notification deamon ++ [(import ./mako.nix)] # notification deamon
++ [(import ./nvim.nix)] # neovim editor ++ [(import ./nvim.nix)] # neovim editor

View file

@ -0,0 +1,6 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
swayfx
autotiling
];
}