nixos/hosts/radix-balthica.nix
2022-05-27 16:31:31 +02:00

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
];
};
}