mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
29 lines
460 B
Nix
29 lines
460 B
Nix
_: let
|
|
hostConfig = {
|
|
tree,
|
|
modulesPath,
|
|
...
|
|
}: {
|
|
imports =
|
|
[
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
]
|
|
++ (with tree.nixos.profiles; [
|
|
server
|
|
])
|
|
++ (with tree.nixos.hardware; [
|
|
oracle_micro
|
|
])
|
|
++ (with tree.nixos.servers; [
|
|
rustdesk
|
|
]);
|
|
|
|
system.stateVersion = "23.11";
|
|
};
|
|
in {
|
|
arch = "x86_64";
|
|
type = "NixOS";
|
|
modules = [
|
|
hostConfig
|
|
];
|
|
}
|