26 lines
478 B
Nix
26 lines
478 B
Nix
|
{ self, config, pkgs, lib, ... }:
|
||
|
let
|
||
|
utils = import ../../util/include.nix { lib = lib; };
|
||
|
imports =
|
||
|
(utils.includeDir ./mirror_users) ++
|
||
|
[
|
||
|
./hardware-configuration.nix
|
||
|
./networking.nix
|
||
|
./sftp_jail.nix
|
||
|
];
|
||
|
in
|
||
|
{
|
||
|
inherit imports;
|
||
|
|
||
|
networking.hostName = "master";
|
||
|
networking.domain = "mirror.lewd.wtf";
|
||
|
|
||
|
boot.loader.grub = {
|
||
|
enable = true;
|
||
|
efiSupport = false;
|
||
|
devices = [ "/dev/sda" ];
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "22.11";
|
||
|
}
|