This commit is contained in:
2023-04-12 20:32:07 +02:00
committed by soraefir
parent 10fbbc2654
commit a57512f3e5
90 changed files with 5470 additions and 4 deletions

32
hosts/iriy/default.nix Executable file
View File

@@ -0,0 +1,32 @@
{
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 = "iriy";
wlp_if = "wlp9s0";
wg_ip4 = "10.10.1.7/24";
wg_ip6 = "fd10:10:10::7/128";
wg_pk = config.sops.secrets.iriy_wg_priv.path;
};
}