mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
72 lines
1.4 KiB
Nix
72 lines
1.4 KiB
Nix
_: let
|
|
hostConfig = {
|
|
pkgs,
|
|
tree,
|
|
modulesPath,
|
|
...
|
|
}: {
|
|
imports =
|
|
[
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
]
|
|
++ (with tree.nixos; [
|
|
#container-host
|
|
#microvm-host
|
|
])
|
|
++ (with tree.nixos.profiles; [
|
|
server
|
|
])
|
|
++ (with tree.nixos.hardware; [
|
|
oracle_flex
|
|
])
|
|
++ (with tree.nixos.servers; [
|
|
weechat
|
|
#matrix
|
|
forgejo
|
|
forgejo-runner
|
|
ntfy
|
|
postgres
|
|
web
|
|
]);
|
|
|
|
environment.systemPackages = [
|
|
pkgs.numix-icon-theme
|
|
];
|
|
|
|
# TODO: Add config.microvm.stateDir to backup schedule?
|
|
# TODO: figure out updateFlake?
|
|
#microvm = {
|
|
# host.enable = true;
|
|
# vms = {
|
|
# syncthing = {
|
|
# autostart = true;
|
|
# specialArgs = removeAttrs specyArgs ["config" "pkgs" "lib"];
|
|
# config = {
|
|
# imports = [
|
|
# tree.nixos.servers.syncthing
|
|
# ];
|
|
# services = {
|
|
# syncthing = {
|
|
# enable = true;
|
|
# };
|
|
# };
|
|
# };
|
|
# restartIfChanged = true;
|
|
# };
|
|
# };
|
|
#};
|
|
|
|
system.stateVersion = "23.11";
|
|
};
|
|
in {
|
|
arch = "aarch64";
|
|
type = "NixOS";
|
|
deploy.hostname = "daiyousei.inskip.me";
|
|
colmena.tags = [
|
|
"server"
|
|
"oci"
|
|
];
|
|
modules = [
|
|
hostConfig
|
|
];
|
|
}
|