16 lines
268 B
Nix
16 lines
268 B
Nix
{ ... }:
|
|
|
|
# These are custom NixOS modules that are
|
|
# not yet in Nixpkgs or can't be upstreamed.
|
|
{
|
|
imports =
|
|
[ # Misc. system services
|
|
./modules/breve.nix
|
|
./modules/asjon.nix
|
|
|
|
# Safely handle secrets
|
|
./modules/secrets-store.nix
|
|
];
|
|
|
|
}
|