pvv-nixos-config/hosts/bakke/configuration.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
750 B
Nix
Raw Normal View History

2024-10-20 01:50:24 +02:00
{ config, pkgs, values, ... }:
{
imports = [
./hardware-configuration.nix
../../base
../../misc/metrics-exporters.nix
./filesystems.nix
];
sops.defaultSopsFile = ../../secrets/bakke/bakke.yaml;
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
sops.age.keyFile = "/var/lib/sops-nix/key.txt";
sops.age.generateKey = true;
2024-10-20 22:04:11 +02:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2024-10-20 01:50:24 +02:00
networking.hostName = "bakke";
2024-10-20 18:20:09 +02:00
networking.hostId = "99609ffc";
2024-10-20 01:50:24 +02:00
systemd.network.networks."30-enp2s0" = values.defaultNetworkConfig // {
matchConfig.Name = "enp2s0";
address = with values.hosts.bakke; [ (ipv4 + "/25") (ipv6 + "/64") ];
};
2024-10-21 21:30:17 +02:00
system.stateVersion = "24.05";
2024-10-20 01:50:24 +02:00
}