Some checks failed
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (push) Failing after 6m50s
Check flake.lock / Check health of `flake.lock` (push) Successful in 9m43s
Check Nix formatting / Perform Nix format checks (push) Failing after 5m36s
Update flakes / createPullRequest (push) Failing after 3h13m22s
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
28 lines
437 B
Nix
28 lines
437 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
./act-runner.nix
|
|
./archiveteam.nix
|
|
# ./books.nix
|
|
#./firefly.nix
|
|
#./foundry.nix
|
|
./glances.nix
|
|
# ./haproxy.nix
|
|
# ./minecraft.nix
|
|
./nextcloud.nix
|
|
# ./postgres.nix
|
|
# ./restic.nix
|
|
./torr.nix
|
|
# ./unifi.nix
|
|
];
|
|
|
|
virtualisation.oci-containers.backend = "docker";
|
|
virtualisation.docker.daemon.settings.data-root = "/var/lib/docker2";
|
|
}
|