25 lines
503 B
Nix
25 lines
503 B
Nix
{ self, config, pkgs, lib, ... }:
|
|
let
|
|
utils = import ../../util/include.nix { lib = lib; };
|
|
imports =
|
|
(utils.includeDir ./services) ++
|
|
[
|
|
./hardware-configuration.nix
|
|
./networking.nix
|
|
./users.nix
|
|
./secrets.nix
|
|
];
|
|
in
|
|
{
|
|
inherit imports;
|
|
|
|
networking.hostName = "nyx";
|
|
networking.domain = "lewd.wtf";
|
|
|
|
boot.loader.grub.enable = false;
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
system.stateVersion = "22.11";
|
|
}
|