diff --git a/features/desktopish/default.nix b/features/desktopish/default.nix index 862405e..c590e25 100644 --- a/features/desktopish/default.nix +++ b/features/desktopish/default.nix @@ -11,7 +11,8 @@ ./redshift.nix # WMish things - ./xmonad + # ./xmonad + ./sway.nix # ./taffybar # Disabled, because it rarely works ]; } diff --git a/features/desktopish/sway.nix b/features/desktopish/sway.nix new file mode 100644 index 0000000..5229098 --- /dev/null +++ b/features/desktopish/sway.nix @@ -0,0 +1,8 @@ + +{ config, pkgs, ...}: + +{ + programs.sway = { + enable = true; + }; +}