This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/nixos/hosts/dns01/default.nix

34 lines
645 B
Nix
Raw Normal View History

2024-03-19 06:53:14 -05:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config
, lib
2024-03-25 07:37:21 -05:00
, pkgs
2024-03-19 06:53:14 -05:00
, ...
}: {
imports = [
2024-03-26 05:11:56 -05:00
2024-03-19 06:53:14 -05:00
];
2024-03-26 05:11:56 -05:00
2024-03-26 05:11:59 -05:00
mySystem.services = {
maddy.enable = true;
dnscrypt-proxy.enable = true;
cfDdns.enable = true;
2024-03-26 05:11:56 -05:00
};
2024-03-19 06:53:14 -05:00
networking.hostName = "dns01"; # Define your hostname.
2024-03-25 04:12:54 -05:00
networking.useDHCP = lib.mkDefault true;
2024-03-19 06:53:14 -05:00
2024-03-25 04:12:54 -05:00
fileSystems."/" =
{
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
};
2024-03-19 06:53:14 -05:00
2024-03-25 04:12:54 -05:00
swapDevices = [ ];
2024-03-19 06:53:14 -05:00
}