2023-06-12 06:37:49 +00:00
|
|
|
flake-inputs:
|
|
|
|
{config, pkgs, lib, ... }: {
|
|
|
|
|
2023-09-22 12:20:11 +00:00
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
(import ./mail.nix flake-inputs)
|
|
|
|
../../roles
|
2023-09-24 00:04:39 +00:00
|
|
|
../../roles/xen_guest.nix
|
2023-09-22 12:20:11 +00:00
|
|
|
./network.nix
|
|
|
|
];
|
2023-06-12 06:37:49 +00:00
|
|
|
|
|
|
|
# System configuration here
|
2023-09-22 12:20:11 +00:00
|
|
|
|
2023-09-29 11:11:20 +00:00
|
|
|
networking.hostName = "nyarlathotep";
|
2023-09-22 12:20:11 +00:00
|
|
|
system.stateVersion = "23.11";
|
2023-06-12 06:37:49 +00:00
|
|
|
}
|