nixos/spec/web/default.nix

20 lines
462 B
Nix
Raw Normal View History

2024-01-14 12:41:57 +08:00
{ lib
, ... }: {
global = {
id = "63795fdf54e048dcbefcbc525ec3779d";
auth.openssh.enable = true;
libvirt.enable = false;
fs.esp.uuid = "3838-0946";
fs.type = "xfs";
fs.store = "8476f738-b83b-4736-abd7-08a1943cf60a";
lowmem.enable = true;
2024-01-15 15:57:40 +08:00
acme.enable = true;
2024-01-14 12:41:57 +08:00
};
imports = lib.pipe ./. [
builtins.readDir
(lib.filterAttrs (n: ty: ty == "regular" && n != "default.nix"))
(lib.mapAttrsToList (n: _: ./${n}))
];
}