13 lines
179 B
Nix
13 lines
179 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
|
|
wayland.windowManager.hyprland.settings = {
|
|
monitor= [
|
|
"virt-1, 1920x1080@60, 0x0, 1.0"
|
|
];
|
|
|
|
env = ["WLR_BACKENDS,headless"];
|
|
};
|
|
}
|