mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
23 lines
367 B
Nix
23 lines
367 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./containers
|
|
./multimedia
|
|
./databases
|
|
./services
|
|
./backups.nix
|
|
./caddy.nix
|
|
./prometheus.nix
|
|
./samba-shares.nix
|
|
./tailscale.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
transmission
|
|
homepage-dashboard
|
|
ethtool
|
|
networkd-dispatcher
|
|
transcrypt
|
|
libressl_3_9
|
|
];
|
|
}
|