mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
marisa: Fix host building
This commit is contained in:
parent
d72efda281
commit
490d2317d8
4 changed files with 6 additions and 2 deletions
|
|
@ -182,7 +182,7 @@ in
|
|||
networking = {
|
||||
domain = mkDefault (if cfg.addresses.public.enable then cfg.dns.domain
|
||||
else if cfg.addresses.private.enable then "${cfg.addresses.private.prefix}.${cfg.dns.domain}" else "");
|
||||
defaultGateway = cfg.privateGateway;
|
||||
defaultGateway = mkDefault cfg.privateGateway;
|
||||
};
|
||||
|
||||
deploy.tf.dns.records =
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit c8f2b37479367758f7518859b335e641d4833eef
|
||||
Subproject commit d1a8b226aa046cca35abede281c61159aebc58e2
|
||||
|
|
@ -8,6 +8,7 @@ let
|
|||
(import inputs.emacs-overlay)
|
||||
(import ./rustfmt)
|
||||
(import ./dns { inherit inputs; })
|
||||
(import ./local.nix)
|
||||
] ++ (map (path: import "${path}/overlay.nix") [
|
||||
inputs.arcexprs
|
||||
inputs.katexprs
|
||||
|
|
|
|||
3
overlays/local.nix
Normal file
3
overlays/local.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
final: prev: {
|
||||
vips = prev.vips.override { libjxl = null; };
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue