Initial commit

This commit is contained in:
yuri 2023-07-10 15:30:51 +02:00
commit 10abd93889
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;
};
}