27 lines
573 B
Nix
27 lines
573 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;
|
|
|
|
users.users.nixos.openssh.authorizedKeys.keyFiles = [../users/malte/yubikey.pub];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# For special computers
|
|
chntpw
|
|
# For testing
|
|
geekbench
|
|
];
|
|
};
|
|
}
|