Emelie Graven
e5e4d3688c
Added the hetzner VPS capetillo and enabled nginx, simple-nixos-mailserver and backups.
24 lines
550 B
Nix
24 lines
550 B
Nix
let
|
|
sources = import ../config/sources;
|
|
in import "${sources.nixus}" {} ({ config, ... }: {
|
|
|
|
defaults = { name, ... }: {
|
|
configuration = { lib, ... }: {
|
|
networking.hostName = lib.mkDefault name;
|
|
};
|
|
|
|
# use our nixpkgs from niv
|
|
nixpkgs = sources.nixpkgs;
|
|
};
|
|
|
|
nodes = {
|
|
capetillo = { lib, config, ... }: {
|
|
host = "deploy@nixaalb.org";
|
|
configuration = ../config/hosts/capetillo/configuration.nix;
|
|
switchTimeout = 300;
|
|
successTimeout = 300;
|
|
#ignoreFailingSystemdUnits = true;
|
|
};
|
|
};
|
|
})
|