maxwell/custom/default.nix

19 lines
317 B
Nix
Raw Permalink Normal View History

2020-10-20 01:11:28 +02:00
{ ... }:
# 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
2021-12-21 00:34:45 +01:00
2020-10-20 01:11:28 +02:00
# Safely handle secrets
./modules/secrets-store.nix
2024-06-30 22:41:18 +02:00
# Pin Nixpkgs
./modules/nixpkgs.nix
2020-10-20 01:11:28 +02:00
];
}