Files
pvv-nixos-config/hosts/skrot/configuration.nix
System administrator 7ba8b47d7d setup nix for skrot
2026-02-10 15:12:53 +01:00

26 lines
438 B
Nix

{
fp,
lib,
values,
...
}:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
./disk-config.nix
(fp /base)
];
systemd.network.networks."enp2s0" = values.defaultNetworkConfig // {
matchConfig.Name = "enp2s0";
address = with values.hosts.skrot; [
(ipv4 + "/25")
(ipv6 + "/64")
];
};
system.stateVersion = "26.05"; # Did you read the comment?
}