26 lines
516 B
Nix
26 lines
516 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
|
|
];
|
|
in
|
|
{
|
|
inherit imports;
|
|
|
|
networking.hostName = "rene";
|
|
networking.domain = "elmosco.lewd.wtf";
|
|
|
|
boot.loader.grub = {
|
|
enable = true;
|
|
efiSupport = false;
|
|
devices = [ "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_drive-scsi0" ];
|
|
};
|
|
|
|
system.stateVersion = "22.11";
|
|
}
|