depot/hosts/prophet/system.nix

39 lines
728 B
Nix
Raw Normal View History

2022-10-17 15:54:48 +03:00
{ aspect, inputs, hosts, ... }:
2022-02-03 21:21:17 +02:00
{
imports =
[
# Hardware
./hardware-configuration.nix
inputs.agenix.nixosModules.age
2022-02-05 20:09:35 +02:00
aspect.modules.hyprspace
2022-05-17 00:13:57 +03:00
aspect.modules.nix-builder
2022-08-04 01:39:55 +03:00
aspect.modules.sss
2022-02-03 22:41:07 +02:00
2022-02-04 01:08:05 +02:00
2022-02-03 21:21:17 +02:00
]
++ aspect.sets.server;
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "prophet";
2022-08-04 01:39:55 +03:00
networking.nameservers = [ hosts.VEGAS.interfaces.vstub.addr ];
2022-02-03 21:21:17 +02:00
time.timeZone = "Europe/Zurich";
networking.useDHCP = false;
networking.interfaces.enp0s3.useDHCP = true;
i18n.defaultLocale = "en_US.UTF-8";
services.openssh.enable = true;
system.stateVersion = "21.11";
}