make basic configuration for sakoserver
This commit is contained in:
parent
5e7e8f1f37
commit
a2e28d5bcd
|
@ -1,15 +1,16 @@
|
||||||
{
|
{ config, pkgs, lib, inputs, outputs, ... }: {
|
||||||
config,
|
imports = [ outputs.nixosModules.server ./hardware-configuration.nix ];
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
inputs,
|
|
||||||
outputs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
|
||||||
./hardware-configuration.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
# important for later, trust me
|
# important for later, trust me
|
||||||
networking.hostName = "sakoserver";
|
networking.hostName = "sakoserver";
|
||||||
|
|
||||||
|
boot.loader = {
|
||||||
|
timeout = 3;
|
||||||
|
systemd-boot = {
|
||||||
|
enable = true;
|
||||||
|
configurationLimit = 10;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
void = { isServer = true; };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue