16 lines
210 B
Nix
16 lines
210 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
./jackett.nix
|
||
|
];
|
||
|
|
||
|
networking = {
|
||
|
hostName = "jackett";
|
||
|
firewall.enable = false;
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "23.05";
|
||
|
}
|