16 lines
320 B
Nix
16 lines
320 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.hostName = "wiki-replica";
|
|
networking.domain = "noisebridge.net";
|
|
|
|
networking.useDHCP = true;
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|