define yukari's monitors

This commit is contained in:
insects 2024-08-10 21:05:32 +02:00
parent daf734ba0c
commit 27e703cf11
4 changed files with 96 additions and 7 deletions

View file

@ -1,8 +1,28 @@
# yukari is an arch-based (for now) distro running in Windows under WSL
# as such, it does not have or need a graphical shell
{ inputs, lib, pkgs, ... }: {
# yukari my main desktop workstation, running nixos
{ pkgs, ... }: {
imports = [
./global.nix
./desktop/hyprland
];
# ---------- ------
# | HDMI-A-5 | | DP-5 |
# ---------- ------
config.monitors = [
{
name = "HDMI-A-5";
width = 3440;
height = 1440;
workspace = "1";
primary = true;
position = "0x0";
}
{
name = "DP-5";
width = 2560;
height = 1440;
workspace = "2";
position = "3440x0";
}
];
}