mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
83 lines
1.8 KiB
Nix
83 lines
1.8 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
let
|
|
pkg = pkgs.nixops-dns;
|
|
cfg = config.services.nixops-dns;
|
|
in
|
|
|
|
{
|
|
options = {
|
|
services.nixops-dns = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to enable the nixops-dns resolution
|
|
of NixOps virtual machines via dnsmasq and fake domain name.
|
|
'';
|
|
};
|
|
|
|
user = mkOption {
|
|
type = types.str;
|
|
description = ''
|
|
The user the nixops-dns daemon should run as.
|
|
This should be the user, which is also used for nixops and
|
|
have the .nixops directory in its home.
|
|
'';
|
|
};
|
|
|
|
domain = mkOption {
|
|
type = types.str;
|
|
description = ''
|
|
Fake domain name to resolve to NixOps virtual machines.
|
|
|
|
For example "ops" will resolve "vm.ops".
|
|
'';
|
|
default = "ops";
|
|
};
|
|
|
|
dnsmasq = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = ''
|
|
Enable dnsmasq forwarding to nixops-dns. This allows to use
|
|
nixops-dns for `services.nixops-dns.domain` resolution
|
|
while forwarding the rest of the queries to original resolvers.
|
|
'';
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.nixops-dns = {
|
|
description = "nixops-dns: DNS server for resolving NixOps machines";
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
User = cfg.user;
|
|
ExecStart = "${pkg}/bin/nixops-dns --domain=.${cfg.domain}";
|
|
};
|
|
};
|
|
|
|
services.dnsmasq = mkIf cfg.dnsmasq {
|
|
enable = true;
|
|
resolveLocalQueries = true;
|
|
servers = [
|
|
"/${cfg.domain}/127.0.0.1#5300"
|
|
];
|
|
settings = {
|
|
bind-interfaces = true;
|
|
listen-address = "127.0.0.1";
|
|
};
|
|
};
|
|
|
|
};
|
|
}
|