26 lines
301 B
Nix
26 lines
301 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
./global
|
||
|
./features/desktop/hyprland
|
||
|
];
|
||
|
|
||
|
# ------
|
||
|
# | DP-1
|
||
|
# ------
|
||
|
monitors = [
|
||
|
{
|
||
|
name = "Virtual-1";
|
||
|
width = 2048;
|
||
|
height = 1152;
|
||
|
x = 0;
|
||
|
workspace = "1";
|
||
|
primary = true;
|
||
|
}
|
||
|
];
|
||
|
}
|