18 lines
270 B
Nix
18 lines
270 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = with lib.custom; [
|
|
(relativeToBase "modules")
|
|
./boot.nix
|
|
./forgejo.nix
|
|
./hardware.nix
|
|
./keycloak.nix
|
|
./podman.nix
|
|
./postgres.nix
|
|
./security
|
|
];
|
|
|
|
# Removed at 25.11
|
|
programs.nh.flake = lib.mkForce null;
|
|
}
|