17 lines
255 B
Nix
17 lines
255 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
myConfig,
|
|
...
|
|
}: {
|
|
wayland.windowManager.hyprland.settings = {
|
|
workspace = [
|
|
"1, monitor:DP-1, default:true"
|
|
"2, monitor:DP-1"
|
|
"3, monitor:DP-1"
|
|
"4, monitor:DP-1"
|
|
"5, monitor:DP-1"
|
|
];
|
|
};
|
|
}
|