nixos/hosts/sakoserver/configuration.nix

17 lines
349 B
Nix
Raw Normal View History

{ 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";
boot.loader = {
timeout = 3;
systemd-boot = {
enable = true;
configurationLimit = 10;
};
};
void = { isServer = true; };
2024-04-03 16:50:45 +04:00
}