mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
18 lines
254 B
Nix
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;
|
|
};
|
|
};
|
|
}
|