diff options
Diffstat (limited to 'home-manager/compositor/sway.nix')
-rw-r--r-- | home-manager/compositor/sway.nix | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/home-manager/compositor/sway.nix b/home-manager/compositor/sway.nix deleted file mode 100644 index 16690e9..0000000 --- a/home-manager/compositor/sway.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ pkgs, ... }: -{ - wayland.windowManager.sway = { - enable = true; - - config = { - terminal = "alacritty"; - modifier = "Mod4"; - menu = "${pkgs.tofi}/bin/tofi-run | ${pkgs.findutils}/bin/xargs swaymsg exec --"; - bars = [ - { - command = "${pkgs.waybar}/bin/waybar"; - position = "bottom"; - } - ]; - fonts = { - names = [ "FontAwesome5Free" ]; - }; - }; - }; -} |