define yukari's monitors
This commit is contained in:
parent
daf734ba0c
commit
27e703cf11
4 changed files with 96 additions and 7 deletions
|
@ -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";
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue