.github
.vscode
docs
hydra
keys
lib
modules
pkgs
systems
artemision
palatine-hill
attic
docker
wg
act-runner.nix
archiveteam.nix
books.nix
default.nix
firefly.nix
foundry.nix
glances.nix
haproxy.cfg
haproxy.nix
minecraft.nix
nextcloud.nix
postgres.nix
restic.nix
torr.nix
unifi.nix
watchtower.bash
haproxy
acme.nix
configuration.nix
default.nix
firewall.nix
gitea.nix
hardware-changes.nix
hardware.nix
hydra.nix
loki.nix
minio.nix
networking.nix
nextcloud.nix
postgresql.nix
samba.nix
secrets.yaml
vars.nix
zfs.nix
users
utils
.envrc
.gitconfig
.gitignore
.sops.yaml
CONTRIBUTING.md
README.md
checks.nix
flake.lock
flake.nix
shell.nix
statix.toml
treefmt.toml
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";
|
|
}
|