2024-12-30 19:12:49 +04:00
|
|
|
{ config, pkgs, lib, inputs, outputs, ... }: {
|
|
|
|
imports = [ outputs.nixosModules.server ./hardware-configuration.nix ];
|
2024-04-03 16:50:45 +04:00
|
|
|
|
|
|
|
# important for later, trust me
|
|
|
|
networking.hostName = "sakoserver";
|
2024-12-30 19:12:49 +04:00
|
|
|
|
|
|
|
boot.loader = {
|
|
|
|
timeout = 3;
|
|
|
|
systemd-boot = {
|
|
|
|
enable = true;
|
|
|
|
configurationLimit = 10;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
void = { isServer = true; };
|
2024-04-03 16:50:45 +04:00
|
|
|
}
|