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