142 lines
3.2 KiB
Nix
142 lines
3.2 KiB
Nix
|
{pkgs, ...}: {
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
];
|
||
|
|
||
|
boot.loader = {
|
||
|
systemd-boot.enable = true;
|
||
|
efi.canTouchEfiVariables = true;
|
||
|
};
|
||
|
|
||
|
time.timeZone = "Europe/Amsterdam";
|
||
|
|
||
|
i18n = {
|
||
|
defaultLocale = "en_US.UTF-8";
|
||
|
|
||
|
extraLocaleSettings = {
|
||
|
LC_ADDRESS = "nl_NL.UTF-8";
|
||
|
LC_IDENTIFICATION = "nl_NL.UTF-8";
|
||
|
LC_MEASUREMENT = "nl_NL.UTF-8";
|
||
|
LC_MONETARY = "nl_NL.UTF-8";
|
||
|
LC_NAME = "nl_NL.UTF-8";
|
||
|
LC_NUMERIC = "nl_NL.UTF-8";
|
||
|
LC_PAPER = "nl_NL.UTF-8";
|
||
|
LC_TELEPHONE = "nl_NL.UTF-8";
|
||
|
LC_TIME = "nl_NL.UTF-8";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
services = {
|
||
|
openssh = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
PasswordAuthentication = false;
|
||
|
KbdInteractiveAuthentication = false;
|
||
|
};
|
||
|
extraConfig = ''
|
||
|
HostCertificate /etc/ssh/ssh_host_ed25519_key-cert.pub
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
xserver = {
|
||
|
layout = "us";
|
||
|
xkbVariant = "";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
users.users.root.openssh.authorizedKeys.keys = [
|
||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOodpLr+FDRyKyHjucHizNLVFHZ5AQmE9GmxMnOsSoaw pimkunis@thinkpadpim"
|
||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUZp4BCxf7uLa1QWonx/Crf8tYZ5MKIZ+EuaBa82LrV user@user-laptop"
|
||
|
];
|
||
|
|
||
|
programs.ssh = {
|
||
|
knownHosts = {
|
||
|
dmz = {
|
||
|
hostNames = ["*.dmz"];
|
||
|
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAX2IhgHNxC6JTvLu9cej+iWuG+uJFMXn4AiRro9533x";
|
||
|
certAuthority = true;
|
||
|
};
|
||
|
|
||
|
hypervisors = {
|
||
|
hostNames = ["*.hyp"];
|
||
|
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFzRkH3d/KVJQouswY/DMpenWbDFVOnI3Vut0xR0e1tb";
|
||
|
certAuthority = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
extraConfig = ''
|
||
|
CertificateFile /etc/ssh/ssh_user_ed25519_key-cert.pub
|
||
|
HostKey /etc/ssh/ssh_user_ed25519_key
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
nixpkgs.config.allowUnfree = true;
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
vim
|
||
|
neofetch
|
||
|
cowsay
|
||
|
python3
|
||
|
];
|
||
|
|
||
|
# TODO: firewalling
|
||
|
# Open ports in the firewall.
|
||
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
||
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
||
|
# Or disable the firewall altogether.
|
||
|
# networking.firewall.enable = false;
|
||
|
|
||
|
system.stateVersion = "23.05";
|
||
|
|
||
|
systemd.network = {
|
||
|
enable = true;
|
||
|
|
||
|
netdevs = {
|
||
|
"20-vlandmz" = {
|
||
|
netdevConfig = {
|
||
|
Kind = "vlan";
|
||
|
Name = "vlandmz";
|
||
|
};
|
||
|
vlanConfig.Id = 30;
|
||
|
};
|
||
|
"20-bridgedmz" = {
|
||
|
netdevConfig = {
|
||
|
Kind = "bridge";
|
||
|
Name = "bridgedmz";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
networks = {
|
||
|
"30-main-nic" = {
|
||
|
matchConfig.Name = "en*";
|
||
|
networkConfig = {
|
||
|
DHCP = "yes";
|
||
|
};
|
||
|
vlan = [
|
||
|
"vlandmz"
|
||
|
];
|
||
|
};
|
||
|
"40-vlandmz" = {
|
||
|
matchConfig.Name = "vlandmz";
|
||
|
networkConfig = {
|
||
|
IPv6AcceptRA = false;
|
||
|
LinkLocalAddressing = "no";
|
||
|
Bridge = "bridgedmz";
|
||
|
};
|
||
|
linkConfig.RequiredForOnline = "enslaved";
|
||
|
};
|
||
|
"40-bridgedmz" = {
|
||
|
matchConfig.Name = "bridgedmz";
|
||
|
networkConfig = {
|
||
|
IPv6AcceptRA = false;
|
||
|
LinkLocalAddressing = "no";
|
||
|
};
|
||
|
linkConfig.RequiredForOnline = "carrier";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
virtualisation.libvirtd.enable = true;
|
||
|
}
|