diff --git a/modules/graphical/sway/default.nix b/modules/graphical/sway/default.nix index 32b67728..cab0a688 100644 --- a/modules/graphical/sway/default.nix +++ b/modules/graphical/sway/default.nix @@ -43,10 +43,6 @@ in wl-clipboard ]; programs = { - mako = { - enable = true; - font = "Hack Regular 9"; - }; zsh.loginExtra = '' if [[ -z "$DISPLAY" ]] && [[ $(tty) = "/dev/tty1" ]]; then exec sway @@ -59,17 +55,17 @@ in settings.theme = { name = "gruvbox-light"; overrides = { - idle_bg="#ffffff"; - idle_fg="#000000"; - info_bg="#6aaeff"; - info_fg="#000000"; - good_bg="#5ada88"; - good_fg="#000000"; - warning_bg="#f5df23"; - warning_fg="#000000"; - critical_bg="#ff8892"; - critical_fg="#000000"; - separator=""; + idle_bg = "#ffffff"; + idle_fg = "#000000"; + info_bg = "#6aaeff"; + info_fg = "#000000"; + good_bg = "#5ada88"; + good_fg = "#000000"; + warning_bg = "#f5df23"; + warning_fg = "#000000"; + critical_bg = "#ff8892"; + critical_fg = "#000000"; + separator = ""; }; }; blocks = [ @@ -139,32 +135,38 @@ in }; }; }; - services.kanshi = { - enable = true; - profiles = { - "home-undocked" = { - outputs = [ - { criteria = "AU Optronics 0x2036 Unknown"; position = "0,0"; mode = "2560x1440"; scale = 1.0; } - ]; - }; - "home-docked" = { - outputs = [ - { criteria = "AU Optronics 0x2036 Unknown"; position = "0,0"; mode = "2560x1440"; scale = 1.0; } - { criteria = "Dell Inc. DELL U2718Q FN84K01T095L"; position = "2560,0"; mode = "3840x2160"; scale = 1.0; } - ]; - }; - "work-undocked" = { - outputs = [ - { criteria = "LG Display 0x06D6 Unknown"; position = "0,0"; mode = "1920x1080"; scale = 1.0; } - ]; - }; - "work-docked" = { - outputs = [ - { criteria = "LG Display 0x06D6 Unknown"; position = "0,0"; mode = "1920x1080"; scale = 1.0; } - { criteria = "Dell Inc. DELL U2718Q FN84K83Q1KHL"; position = "1920,0"; mode = "3840x2160"; scale = 1.0; } - ]; + services = { + kanshi = { + enable = true; + profiles = { + "home-undocked" = { + outputs = [ + { criteria = "AU Optronics 0x2036 Unknown"; position = "0,0"; mode = "2560x1440"; scale = 1.0; } + ]; + }; + "home-docked" = { + outputs = [ + { criteria = "AU Optronics 0x2036 Unknown"; position = "0,0"; mode = "2560x1440"; scale = 1.0; } + { criteria = "Dell Inc. DELL U2718Q FN84K01T095L"; position = "2560,0"; mode = "3840x2160"; scale = 1.0; } + ]; + }; + "work-undocked" = { + outputs = [ + { criteria = "LG Display 0x06D6 Unknown"; position = "0,0"; mode = "1920x1080"; scale = 1.0; } + ]; + }; + "work-docked" = { + outputs = [ + { criteria = "LG Display 0x06D6 Unknown"; position = "0,0"; mode = "1920x1080"; scale = 1.0; } + { criteria = "Dell Inc. DELL U2718Q FN84K83Q1KHL"; position = "1920,0"; mode = "3840x2160"; scale = 1.0; } + ]; + }; }; }; + mako = { + enable = true; + font = "Hack Regular 9"; + }; }; wayland.windowManager.sway = { enable = true;