servo: consolidate service enumeration to services/default.nix

This commit is contained in:
colin 2022-10-04 23:08:03 -07:00
parent 0648825765
commit 47f378e7fc
2 changed files with 18 additions and 12 deletions

View File

@ -6,18 +6,7 @@
./hardware.nix
./net.nix
./users.nix
./services/ddns-he.nix
./services/gitea.nix
./services/ipfs.nix
./services/jackett.nix
./services/jellyfin.nix
./services/matrix
./services/navidrome.nix
./services/nginx.nix
./services/pleroma.nix
./services/postfix.nix
./services/postgres.nix
./services/transmission.nix
./services
];
sane.home-manager.enable = true;

View File

@ -0,0 +1,17 @@
{ ... }:
{
imports = [
./ddns-he.nix
./gitea.nix
./ipfs.nix
./jackett.nix
./jellyfin.nix
./matrix
./navidrome.nix
./nginx.nix
./pleroma.nix
./postfix.nix
./postgres.nix
./transmission.nix
];
}