1
0
Fork 0
nixfiles/hosts/palladium/configuration.nix

27 lines
488 B
Nix
Raw Normal View History

2021-04-30 23:36:48 +02:00
{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../../configuration/common
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "palladium";
networking.useDHCP = false;
networking.interfaces.enp3s0.useDHCP = true;
2021-04-30 23:54:43 +02:00
clerie.monitoring = {
enable = true;
id = "206";
pubkey = "fHOYNZ5I3E2JPrd9dUrNBmu75weX4KbDih5q+GCk8Xk=";
};
2021-04-30 23:36:48 +02:00
system.stateVersion = "21.03";
}