783 current 2024-06-27 11:49:27 24.11.20240627.3664857 6.9.6-zen1 *
This commit is contained in:
parent
2c2fef30d9
commit
b2d397a715
5 changed files with 101 additions and 30 deletions
|
|
@ -7,6 +7,12 @@
|
|||
with lib;
|
||||
with lib.custom; let
|
||||
cfg = config.wms.sway;
|
||||
|
||||
mkService = recursiveUpdate {
|
||||
Unit.PartOf = ["graphical-session.target"];
|
||||
Unit.After = ["graphical-session.target"];
|
||||
Install.WantedBy = ["graphical-session.target"];
|
||||
};
|
||||
in {
|
||||
options.wms.sway = with types; {
|
||||
enable = mkBoolOpt false "Enable Sway";
|
||||
|
|
@ -16,7 +22,46 @@ in {
|
|||
wayland.windowManager.sway = {
|
||||
enable = true;
|
||||
xwayland = true;
|
||||
package = pkgs.swayfx;
|
||||
extraOptions = ["--unsupported-gpu"];
|
||||
|
||||
config = {
|
||||
terminal = "kitty";
|
||||
startup = [{command = "firefox";}];
|
||||
|
||||
menu = "killall anyrun || anyrun";
|
||||
|
||||
input = {
|
||||
"Logitech USB Receiver Keyboard" = {
|
||||
accel_profile = "flat";
|
||||
pointer_accel = "0";
|
||||
};
|
||||
"Logitech USB Receiver" = {
|
||||
accel_profile = "flat";
|
||||
pointer_accel = "0";
|
||||
};
|
||||
};
|
||||
|
||||
output = {
|
||||
DP-1 = {
|
||||
mode = "2560x1440@240Hz";
|
||||
adaptive_sync = "off";
|
||||
};
|
||||
HDMI-A-1 = {
|
||||
disable = "disable";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
systemd.user.services = {
|
||||
swaybg = mkService {
|
||||
Unit.Description = "Wallpaper Chooser";
|
||||
Service = {
|
||||
ExecStart = "${getExe pkgs.swaybg} -i ${wallpaper}";
|
||||
Restart = "always";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue