depot/hosts/grail/system.nix

45 lines
865 B
Nix
Raw Permalink Normal View History

{ config, depot, ... }:
2023-11-04 01:24:43 +02:00
let
inherit (config.reflection.interfaces) primary;
2023-11-04 01:24:43 +02:00
in
{
imports = [
./hardware-configuration.nix
depot.inputs.agenix.nixosModules.age
depot.nixosModules.serverBase
2023-11-04 02:04:30 +02:00
depot.nixosModules.hyprspace
2023-11-04 01:24:43 +02:00
];
zramSwap.enable = true;
networking.hostName = "grail";
networking.nameservers = [ depot.hours.VEGAS.interfaces.vstub.addr ];
i18n.defaultLocale = "en_US.UTF-8";
services.openssh.enable = true;
time.timeZone = "Europe/Helsinki";
networking = {
defaultGateway = "172.31.1.1";
useDHCP = false;
dhcpcd.enable = false;
interfaces = {
${primary.link} = {
ipv4.addresses = [
{ address = primary.addr; prefixLength = 32; }
];
ipv4.routes = [ { address = "172.31.1.1"; prefixLength = 32; } ];
};
};
};
system.stateVersion = "23.05";
}