infrastructure/hosts/kinda.sus.lol/configuration.nix

28 lines
527 B
Nix
Raw Normal View History

2023-04-12 12:47:22 +00:00
{ 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";
}