nix-infra/hosts/jackett/configuration.nix

16 lines
210 B
Nix
Raw Normal View History

2024-11-20 05:46:39 +01:00
{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./jackett.nix
];
networking = {
hostName = "jackett";
firewall.enable = false;
};
system.stateVersion = "23.05";
}