From 48132065e1c6b8542ad859d28bd347ab60a89916 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Mon, 15 Dec 2025 23:29:55 +0100 Subject: [PATCH] add alvr nixpkgs just to try and make alvr work.... --- flake.lock | 17 +++++++++++++++++ flake.nix | 2 ++ hosts/lambdaos/configuration.nix | 2 ++ 3 files changed, 21 insertions(+) diff --git a/flake.lock b/flake.lock index ba530e9..8b8abe0 100644 --- a/flake.lock +++ b/flake.lock @@ -43,6 +43,22 @@ "type": "github" } }, + "alvr-nixpkgs": { + "locked": { + "lastModified": 1765837179, + "narHash": "sha256-pGPUAAFsQktrdPqaYKjEjpXP7Jcd5HIbF2ecUTmVZoI=", + "owner": "itepastra", + "repo": "nixpkgs", + "rev": "96726c5e4a8b108fa912f8d1148ff947877b14cc", + "type": "github" + }, + "original": { + "owner": "itepastra", + "ref": "alvr-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "authentik": { "inputs": { "authentik-src": "authentik-src", @@ -1005,6 +1021,7 @@ "inputs": { "advisory-db": "advisory-db", "agenix": "agenix", + "alvr-nixpkgs": "alvr-nixpkgs", "authentik": "authentik", "automapaper": "automapaper", "crane": "crane", diff --git a/flake.nix b/flake.nix index 210793e..82c2e8a 100644 --- a/flake.nix +++ b/flake.nix @@ -42,6 +42,8 @@ inputs.nixpkgs.follows = "nixpkgs"; }; + # ALVR fixed + alvr-nixpkgs.url = "github:itepastra/nixpkgs/alvr-unstable"; # for secret management agenix = { url = "github:ryantm/agenix"; diff --git a/hosts/lambdaos/configuration.nix b/hosts/lambdaos/configuration.nix index b8e87f1..daba1d9 100644 --- a/hosts/lambdaos/configuration.nix +++ b/hosts/lambdaos/configuration.nix @@ -5,6 +5,7 @@ { config, pkgs, + inputs, ... }: { @@ -95,6 +96,7 @@ alvr = { enable = true; openFirewall = true; + package = inputs.alvr-nixpkgs.legacyPackages.${pkgs.stdenv.hostPlatform.system}.alvr; }; nix-ld = { enable = true;