26 lines
736 B
Nix
Raw Permalink Normal View History

2023-06-26 16:30:36 -05:00
{ pkgs, ... }: {
2023-06-26 16:19:14 -05:00
boot = {
kernel.sysctl."net.ipv4.ip_forward" = true;
2023-06-26 16:19:14 -05:00
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
};
2023-09-11 19:52:03 -05:00
environment.systemPackages = with pkgs; [ git pciutils openvpn vim wget ];
2023-06-26 16:19:14 -05:00
2024-01-10 12:28:37 -06:00
programs = {
ssh.knownHosts = {
selbeiskami = {
hostNames = [ "192.168.0.57" ];
publicKey = "192.168.0.57 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBiTyWzAu7V2Jkk4rqEjBLu+lAhhkLTO8W/PGb8HkeqQ";
};
matricx = {
hostNames = [ "192.168.0.130" "matri.cx" ];
publicKey = "matri.cx ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMyaPYK0HcKAjrD1g+FPqPEU9FJ0I6+iKYmQlWKE0zHp";
};
};
2024-01-10 12:28:37 -06:00
zsh.enable = true;
};
2023-06-26 16:19:14 -05:00
time.timeZone = "America/Chicago";
}