mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
15 lines
211 B
Nix
15 lines
211 B
Nix
{
|
|
lib,
|
|
meta,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkDefault;
|
|
in {
|
|
imports = let
|
|
inherit (meta) nixos;
|
|
in [
|
|
nixos.ct.proxmox
|
|
];
|
|
|
|
services.kanidm.serverSettings.db_fs_type = mkDefault "zfs";
|
|
}
|