configuration
flake
hosts
_iso
aluminium
astatine
backup-4
beryllium
carbon
clerie-backup
dn42-il-gw1
dn42-il-gw5
dn42-il-gw6
dn42-ildix-clerie
dn42-ildix-service
gatekeeper
hydra-1
hydra-2
krypton
mail-2
monitoring-3
nonat
osmium
palladium
porter
storage-2
tungsten
web-2
zinc
configuration.nix
hardware-configuration.nix
initrd.nix
programs.nix
secrets.json
ssh.pub
lib
modules
pkgs
profiles
users
.gitignore
README.md
flake.lock
flake.nix
38 lines
695 B
Nix
38 lines
695 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
|
|
../../configuration/desktop
|
|
|
|
./initrd.nix
|
|
./programs.nix
|
|
];
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.loader.timeout = 0;
|
|
|
|
boot.initrd.luks = {
|
|
devices.lvm = {
|
|
device = "/dev/disk/by-uuid/43275d9a-8fe8-4631-bf9c-a95d692b534f";
|
|
bypassWorkqueues = true;
|
|
};
|
|
};
|
|
|
|
boot.initrd.systemd.enable = false;
|
|
|
|
services.wg-clerie = {
|
|
enable = true;
|
|
ipv6s = [ "2a01:4f8:c0c:15f1::8109/128" ];
|
|
ipv4s = [ "10.20.30.109/32" ];
|
|
};
|
|
|
|
system.stateVersion = "23.05";
|
|
}
|
|
|
|
|