Initial commit

This commit is contained in:
fi 2024-11-20 05:46:39 +01:00
commit e9460e0f80
20 changed files with 395 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./jackett.nix
];
networking = {
hostName = "jackett";
firewall.enable = false;
};
system.stateVersion = "23.05";
}

View file

@ -0,0 +1,6 @@
{ ... }:
{
services.jackett = {
enable = true;
};
}