Worked around issue with failing DO image builds
This commit is contained in:
parent
ab5a05bd86
commit
0354c66afb
|
@ -98,8 +98,6 @@
|
||||||
"carbon"
|
"carbon"
|
||||||
];
|
];
|
||||||
in {
|
in {
|
||||||
inherit (inputs.self);
|
|
||||||
|
|
||||||
# Only have a builder for x86_64-linux atm
|
# Only have a builder for x86_64-linux atm
|
||||||
packages = inputs.self.packages.x86_64-linux;
|
packages = inputs.self.packages.x86_64-linux;
|
||||||
|
|
||||||
|
@ -107,6 +105,8 @@
|
||||||
name:
|
name:
|
||||||
inputs.self.nixosConfigurations."${name}".config.system.build.toplevel
|
inputs.self.nixosConfigurations."${name}".config.system.build.toplevel
|
||||||
);
|
);
|
||||||
|
|
||||||
|
droplets.proxy = inputs.self.doConfigurations.proxy;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
lib,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
aa = {
|
aa = {
|
||||||
|
@ -29,6 +30,11 @@
|
||||||
tools.zsh.enable = true;
|
tools.zsh.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Workaround for broken digital ocean image builds
|
||||||
|
# See: https://github.com/NixOS/nixpkgs/issues/308404
|
||||||
|
boot.loader.grub.devices = lib.mkForce ["/dev/vda"];
|
||||||
|
boot.loader.grub.device = "/dev/vda";
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
appendHttpConfig = ''
|
appendHttpConfig = ''
|
||||||
|
|
Loading…
Reference in a new issue