28 lines
527 B
Nix
28 lines
527 B
Nix
|
{ self, config, pkgs, lib, ... }:
|
||
|
let
|
||
|
utils = import ../../util/include.nix { lib = lib; };
|
||
|
imports =
|
||
|
(utils.includeDir ./services) ++
|
||
|
(utils.includeDir ./storage_users) ++
|
||
|
[
|
||
|
./hardware-configuration.nix
|
||
|
./networking.nix
|
||
|
./sftp_jail.nix
|
||
|
./secrets.nix
|
||
|
];
|
||
|
in
|
||
|
{
|
||
|
inherit imports;
|
||
|
|
||
|
networking.hostName = "kinda";
|
||
|
networking.domain = "sus.lol";
|
||
|
|
||
|
boot.loader.grub = {
|
||
|
enable = true;
|
||
|
efiSupport = false;
|
||
|
devices = [ "/dev/sda" ];
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "22.11";
|
||
|
}
|