nixfiles/systems/daiyousei.nix
2024-10-09 15:54:08 -04:00

31 lines
524 B
Nix

_: let
hostConfig = {
tree,
modulesPath,
...
}: {
imports =
[
(modulesPath + "/profiles/qemu-guest.nix")
]
++ (with tree.nixos.profiles; [
server
])
++ (with tree.nixos.hardware; [
oracle_flex
])
++ (with tree.nixos.servers; [
weechat
web
]);
system.stateVersion = "23.11";
};
in {
arch = "aarch64";
deploy.hostname = "daiyousei.inskip.me";
type = "NixOS";
modules = [
hostConfig
];
}