infrastructure/config/hosts/beltane/home/sway.nix
2021-08-19 17:42:50 +01:00

18 lines
254 B
Nix

{ config, pkgs, lib, ... }:
with lib;
{
wayland.windowManager.sway.config = {
output =
let
middle = {
res = "1280x1024@75Hz";
pos = "1920 0";
};
in
{
"VGA-1" = middle;
};
};
}