nixos/home/sam/nixdev.nix

26 lines
301 B
Nix
Raw Normal View History

2024-05-11 13:49:12 +01:00
{
pkgs,
config,
lib,
...
}: {
imports = [
./global
./features/desktop/hyprland
];
# ------
# | DP-1
# ------
monitors = [
{
name = "Virtual-1";
width = 2048;
height = 1152;
x = 0;
workspace = "1";
primary = true;
}
];
}