nixConfig/nixos/machines/nyarlathotep/configuration.nix

17 lines
288 B
Nix
Raw Normal View History

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