31 lines
740 B
Nix
31 lines
740 B
Nix
{
|
|
pkgs,
|
|
modulesPath,
|
|
...
|
|
}: {
|
|
imports = [
|
|
(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")
|
|
];
|
|
|
|
config = {
|
|
networking.hostName = "radix-balthica";
|
|
networking.networkmanager.enable = true;
|
|
networking.wireless.enable = false;
|
|
networking.firewall.enable = false;
|
|
settings.ssh.openOutsideVPN = true;
|
|
|
|
# === Make sure ZFS works ===
|
|
# TODO: Update and think of some automatic way of keeping this up to date.
|
|
boot.kernelPackages = pkgs.linuxPackages_5_15;
|
|
|
|
users.users.nixos.openssh.authorizedKeys.keyFiles = [../users/malte/yubikey.pub];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# For special computers
|
|
chntpw
|
|
# For testing
|
|
# geekbench
|
|
];
|
|
};
|
|
}
|