2023-12-20 13:15:57 +01:00
|
|
|
{ lib, pkgs, ... }:
|
2023-06-07 14:13:36 +02:00
|
|
|
|
|
|
|
let
|
2024-10-09 17:04:30 +02:00
|
|
|
dgn-keys = import ../keys;
|
2023-06-07 14:13:36 +02:00
|
|
|
|
2024-06-17 15:33:46 +02:00
|
|
|
dgn-members = (import ../meta lib).organization.groups.root;
|
2023-06-07 14:13:36 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2023-06-08 10:20:55 +02:00
|
|
|
imports = [ ./dgn-install ];
|
|
|
|
|
2023-06-07 14:13:36 +02:00
|
|
|
boot = {
|
|
|
|
blacklistedKernelModules = [ "snd_pcsp" ];
|
2024-09-20 11:26:50 +02:00
|
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
2023-06-07 14:13:36 +02:00
|
|
|
tmp.cleanOnBoot = true;
|
|
|
|
|
|
|
|
loader = {
|
|
|
|
systemd-boot.enable = true;
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
supportedFilesystems = [
|
|
|
|
"exfat"
|
|
|
|
"zfs"
|
2024-09-20 11:26:50 +02:00
|
|
|
"bcachefs"
|
2023-06-07 14:13:36 +02:00
|
|
|
];
|
2023-12-20 13:15:57 +01:00
|
|
|
|
|
|
|
swraid.enable = lib.mkForce false;
|
2023-06-07 14:13:36 +02:00
|
|
|
};
|
|
|
|
|
2023-06-08 10:20:55 +02:00
|
|
|
console.keyMap = "fr";
|
|
|
|
|
2023-06-07 14:13:36 +02:00
|
|
|
services = {
|
|
|
|
openssh.enable = true;
|
|
|
|
};
|
|
|
|
|
2024-10-09 17:04:30 +02:00
|
|
|
users.users.root.openssh.authorizedKeys.keys = dgn-keys.getKeys dgn-members;
|
2023-06-07 14:13:36 +02:00
|
|
|
}
|