diff --git a/flake.nix b/flake.nix index ed08b5a..bd284b1 100644 --- a/flake.nix +++ b/flake.nix @@ -158,6 +158,14 @@ }; modules = [./home/logistik/AZPILOGISTIK04.nix]; }; + "logistik@AZPILOGISTIK05" = home-manager.lib.homeManagerConfiguration { + pkgs = nixpkgs.legacyPackages."aarch64-linux"; + extraSpecialArgs = { + inherit inputs outputs; + hostname = "AZPILOGISTIK05"; + }; + modules = [./home/logistik/AZPILOGISTIK05.nix]; + }; }; deploy.nodes = { AZ-CLD-1 = { diff --git a/home/logistik/AZPILOGISTIK05.nix b/home/logistik/AZPILOGISTIK05.nix new file mode 100644 index 0000000..ab41f34 --- /dev/null +++ b/home/logistik/AZPILOGISTIK05.nix @@ -0,0 +1,22 @@ +{ + 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" + ]; + }; +}