24 lines
467 B
Nix
24 lines
467 B
Nix
|
{ config, pkgs, inputs, lib, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./bolty-boot.nix
|
||
|
./real-hardware.nix
|
||
|
./tailscale-bolty.nix
|
||
|
../../server-security.nix
|
||
|
../../tailscale.nix
|
||
|
../cli.nix
|
||
|
./print-server.nix
|
||
|
];
|
||
|
networking = {
|
||
|
hostName = "bolty";
|
||
|
useDHCP = false;
|
||
|
interfaces.enp4s0.useDHCP = true;
|
||
|
};
|
||
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||
|
|
||
|
security.allowUserNamespaces = true;
|
||
|
|
||
|
time.timeZone = "Europe/London";
|
||
|
|
||
|
}
|