diff --git a/flake.nix b/flake.nix index 7b9e3df..115fe99 100644 --- a/flake.nix +++ b/flake.nix @@ -91,7 +91,10 @@ }; })); - overlays = { default = local_overlay; }; + overlays = { + default = local_overlay; + all = overlays; + }; modules = import ./modules; diff --git a/hosts/myself/container-git.nix b/hosts/myself/container-git.nix index e3b5739..71366f2 100644 --- a/hosts/myself/container-git.nix +++ b/hosts/myself/container-git.nix @@ -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 diff --git a/hosts/myself/container-runner.nix b/hosts/myself/container-runner.nix index 688a0f5..a4b6b08 100644 --- a/hosts/myself/container-runner.nix +++ b/hosts/myself/container-runner.nix @@ -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 = { diff --git a/modules/baseline.nix b/modules/baseline.nix index b80cd0e..8dc6d67 100644 --- a/modules/baseline.nix +++ b/modules/baseline.nix @@ -1,4 +1,4 @@ -{pkgs, ... }: +{ pkgs, ... }: { # Enable flakes nix = { @@ -52,4 +52,4 @@ unzip wget ]; -} \ No newline at end of file +}