1
0

Add host palladium

This commit is contained in:
2021-04-30 23:36:48 +02:00
parent db37daab95
commit 17e3d37989
2 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{ 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";
}