This commit is contained in:
2023-04-12 20:32:07 +02:00
parent 10fbbc2654
commit 28aeb49e34
85 changed files with 5140 additions and 4 deletions

33
hosts/valinor/default.nix Executable file
View File

@@ -0,0 +1,33 @@
{
config,
pkgs,
...
}: {
imports =
[
../_/cfg.nix
./hardware-configuration.nix
../_/host.nix
];
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = 8;
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
};
hostcfg = {
hostname = "valinor";
wlp_if = "wlp9s0";
wg_ip4 = "10.10.1.5/24";
wg_ip6 = "fd10:10:10::5/128";
wg_pk = config.sops.secrets.valinor_wg_priv.path;
};
}