17 lines
446 B
Nix
17 lines
446 B
Nix
# Home media server — hosts Jellyfin, Forgejo, Matrix Conduit, and media management services
|
|
{inputs, ...}: {
|
|
imports = with inputs; [
|
|
disko.nixosModules.default
|
|
hardware.nixosModules.common-cpu-amd
|
|
hardware.nixosModules.common-cpu-amd-pstate
|
|
./conduit.nix
|
|
./configuration.nix
|
|
./disko.nix
|
|
./forgejo.nix
|
|
./hardware-configuration.nix
|
|
./jellyfin.nix
|
|
./network.nix
|
|
./syncthing.nix
|
|
./zfs.nix
|
|
];
|
|
}
|