Get container overlays working again
This commit is contained in:
@@ -91,7 +91,10 @@
|
|||||||
};
|
};
|
||||||
}));
|
}));
|
||||||
|
|
||||||
overlays = { default = local_overlay; };
|
overlays = {
|
||||||
|
default = local_overlay;
|
||||||
|
all = overlays;
|
||||||
|
};
|
||||||
|
|
||||||
modules = import ./modules;
|
modules = import ./modules;
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,8 @@ in {
|
|||||||
inputs.self.modules.nixosModule
|
inputs.self.modules.nixosModule
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nixpkgs.overlays = inputs.self.overlays.all;
|
||||||
|
|
||||||
age.identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
age.identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
||||||
age.secretsMountPoint = "/run/derp";
|
age.secretsMountPoint = "/run/derp";
|
||||||
age.secrets = let
|
age.secrets = let
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ lib.attrsets.recursiveUpdate {
|
|||||||
inputs.self.modules.nixosModule
|
inputs.self.modules.nixosModule
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nixpkgs.overlays = inputs.self.overlays.all;
|
||||||
|
|
||||||
age = {
|
age = {
|
||||||
identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
||||||
secrets.runner-reg = {
|
secrets.runner-reg = {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
# Enable flakes
|
# Enable flakes
|
||||||
nix = {
|
nix = {
|
||||||
|
|||||||
Reference in New Issue
Block a user