hydrogen: some minor tweaks for the build to work

This commit is contained in:
Primrose 2025-11-01 19:37:10 +08:00
parent fedc010290
commit 314e9294e2
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 11 additions and 2 deletions

View file

@ -43,7 +43,9 @@ in
] ]
# use lix everywhere and wrap it with nom # use lix everywhere and wrap it with nom
++ [ ++ [
(import (sources.lix-module + "/overlay.nix") {inherit (sources) lix;}) # TODO
# Can't get it build for now
# (import (sources.lix-module + "/overlay.nix") {inherit (sources) lix;})
(import ../overlays/nix-monitored.nix) (import ../overlays/nix-monitored.nix)
]; ];

View file

@ -62,8 +62,15 @@
}; };
in in
lib.mkMerge (map go ns); lib.mkMerge (map go ns);
allowList = builtins.filter (x: x.ssid == "~");
in in
fromList (import ../../../connectivity/networks.nix); fromList (
# We only want to use my own network
allowList (
import ../../../connectivity/networks.nix
)
);
}; };
}; };