Tom Hubrecht
e49ab86364
All checks were successful
build configuration / build_web02 (push) Successful in 1m6s
build configuration / build_compute01 (push) Successful in 1m18s
build configuration / build_vault01 (push) Successful in 1m9s
build configuration / build_storage01 (push) Successful in 1m12s
build configuration / build_rescue01 (push) Successful in 57s
lint / check (push) Successful in 23s
build configuration / build_web01 (push) Successful in 1m33s
build configuration / push_to_cache (push) Successful in 2m13s
39 lines
691 B
Nix
39 lines
691 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
let
|
|
dgn-lib = import ../lib { };
|
|
|
|
dgn-members = (import ../meta lib).members.groups.root;
|
|
in
|
|
|
|
{
|
|
imports = [ ./dgn-install ];
|
|
|
|
boot = {
|
|
blacklistedKernelModules = [ "snd_pcsp" ];
|
|
kernelPackages = pkgs.linuxPackages_6_1;
|
|
tmp.cleanOnBoot = true;
|
|
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
|
|
supportedFilesystems = [
|
|
"exfat"
|
|
"zfs"
|
|
];
|
|
|
|
swraid.enable = lib.mkForce false;
|
|
};
|
|
|
|
console.keyMap = "fr";
|
|
|
|
services = {
|
|
openssh.enable = true;
|
|
};
|
|
|
|
users.users.root.openssh.authorizedKeys.keyFiles = builtins.map (
|
|
m: dgn-lib.mkRel ../keys "${m}.keys"
|
|
) dgn-members;
|
|
}
|