23 lines
393 B
Nix
23 lines
393 B
Nix
{
|
|
config,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../common
|
|
./home.nix
|
|
];
|
|
wayland.windowManager.hyprland.settings = {
|
|
env = [
|
|
"WEBAPP_URL,http://192.168.152.98:4711/login/logistik-pack"
|
|
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
|
|
"HYPRCURSOR_SIZE,32"
|
|
"WLR_NO_HARDWARE_CURSORS,1"
|
|
];
|
|
exec-once = [
|
|
"chromium --app=$WEBAPP_URL"
|
|
];
|
|
};
|
|
}
|