summaryrefslogtreecommitdiff
path: root/home-manager/compositor/sway.nix
diff options
context:
space:
mode:
authorJasper Ras <jaspert.ras@gmail.com>2024-11-14 19:11:37 +0100
committerJasper Ras <jaspert.ras@gmail.com>2024-11-14 19:44:03 +0100
commit2c89cbb5cae2cd90be95700935a4c3e40ed08907 (patch)
treef9009d5390e864935fc320480acf1a30d93d7934 /home-manager/compositor/sway.nix
parent7f993934b00fbbe2deca59edbedc993eaf76a05c (diff)
Remove and move some unused stuff
Diffstat (limited to 'home-manager/compositor/sway.nix')
-rw-r--r--home-manager/compositor/sway.nix21
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" ];
- };
- };
- };
-}