Get container overlays working again

This commit is contained in:
Greg Hellings
2024-02-13 23:58:38 -06:00
parent 90c898dcc1
commit 7c0f5b3731
4 changed files with 10 additions and 3 deletions
+4 -1
View File
@@ -91,7 +91,10 @@
};
}));
overlays = { default = local_overlay; };
overlays = {
default = local_overlay;
all = overlays;
};
modules = import ./modules;
+2
View File
@@ -9,6 +9,8 @@ in {
inputs.self.modules.nixosModule
];
nixpkgs.overlays = inputs.self.overlays.all;
age.identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
age.secretsMountPoint = "/run/derp";
age.secrets = let
+2
View File
@@ -15,6 +15,8 @@ lib.attrsets.recursiveUpdate {
inputs.self.modules.nixosModule
];
nixpkgs.overlays = inputs.self.overlays.all;
age = {
identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
secrets.runner-reg = {
+2 -2
View File
@@ -1,4 +1,4 @@
{pkgs, ... }:
{ pkgs, ... }:
{
# Enable flakes
nix = {
@@ -52,4 +52,4 @@
unzip
wget
];
}
}