From 6f18647318186ea4d2f5a5adcd91ceb09babbe12 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Thu, 15 Apr 2021 15:48:47 -0400 Subject: [PATCH] Add sway --- features/desktopish/default.nix | 3 ++- features/desktopish/sway.nix | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 features/desktopish/sway.nix 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; + }; +}