+AZPILOGISTIK02-04

This commit is contained in:
2025-11-12 11:40:28 +01:00
parent 8d4adb87ca
commit d6f7f05641
6 changed files with 103 additions and 69 deletions

View File

@@ -0,0 +1,19 @@
{
config,
lib,
inputs,
...
}: {
imports = [
../common
./home.nix
];
wayland.windowManager.hyprland.settings = {
env = [
"WEBAPP_URL,http://192.168.152.98:4711/login/bde-logistik"
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
"HYPRCURSOR_SIZE,32"
"WLR_NO_HARDWARE_CURSORS,1"
];
};
}

View File

@@ -0,0 +1,19 @@
{
config,
lib,
inputs,
...
}: {
imports = [
../common
./home.nix
];
wayland.windowManager.hyprland.settings = {
env = [
"WEBAPP_URL,http://192.168.152.98:4711/login/bde-logistik"
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
"HYPRCURSOR_SIZE,32"
"WLR_NO_HARDWARE_CURSORS,1"
];
};
}

View File

@@ -0,0 +1,19 @@
{
config,
lib,
inputs,
...
}: {
imports = [
../common
./home.nix
];
wayland.windowManager.hyprland.settings = {
env = [
"WEBAPP_URL,http://192.168.152.98:4711/login/bde-logistik"
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
"HYPRCURSOR_SIZE,32"
"WLR_NO_HARDWARE_CURSORS,1"
];
};
}

View File

@@ -27,6 +27,7 @@
home.packages = with pkgs; [
rose-pine-hyprcursor
nitch
google-chrome
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# pkgs.hello
@@ -76,6 +77,26 @@
];
};
nixpkgs = {
overlays = [
(final: prev: {
google-chrome = prev.google-chrome.override {
commandLineArgs = [
"--password-store=basic"
"--kiosk"
"--ozone-platform=x11"
"--disable-restore-session-state"
"--disable-session-crashed-bubble"
"--disable-infobars"
"--no-first-run"
"--disable-logging"
"--incognito"
];
};
})
];
};
wayland.windowManager.hyprland = {
enable = true;
settings = {