30 lines
568 B
Nix
30 lines
568 B
Nix
{
|
|
config,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../common
|
|
./home.nix
|
|
];
|
|
wayland.windowManager.hyprland.settings = {
|
|
env = [
|
|
"WEBAPP_URL,http://192.168.152.110:4711/login/logistik-pick"
|
|
"WEBAPP_URL1,http://192.168.152.110:4711/login/logistik-pack"
|
|
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
|
|
"HYPRCURSOR_SIZE,32"
|
|
"WLR_NO_HARDWARE_CURSORS,1"
|
|
];
|
|
exec-once = [
|
|
"start-browsers"
|
|
];
|
|
monitor = [
|
|
];
|
|
workspace = [
|
|
"1, monitor:HDMI-A-1, default:true"
|
|
"2, monitor:HDMI-A-2"
|
|
];
|
|
};
|
|
}
|