diff options
author | Jasper Ras <jaspert.ras@gmail.com> | 2024-11-14 19:11:37 +0100 |
---|---|---|
committer | Jasper Ras <jaspert.ras@gmail.com> | 2024-11-14 19:44:03 +0100 |
commit | 2c89cbb5cae2cd90be95700935a4c3e40ed08907 (patch) | |
tree | f9009d5390e864935fc320480acf1a30d93d7934 /home-manager/compositor/sway.nix | |
parent | 7f993934b00fbbe2deca59edbedc993eaf76a05c (diff) |
Remove and move some unused stuff
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" ]; - }; - }; - }; -} |