mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
29 lines
488 B
Nix
29 lines
488 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; [
|
|
]);
|
|
|
|
system.stateVersion = "23.11";
|
|
};
|
|
in {
|
|
arch = "aarch64";
|
|
deploy.hostname = "daiyousei.inskip.me";
|
|
type = "NixOS";
|
|
modules = [
|
|
hostConfig
|
|
];
|
|
}
|