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

21 lines
362 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;
system.stateVersion = "21.03";
}