diff options
Diffstat (limited to 'makefu')
| -rw-r--r-- | makefu/2configs/temp/8812au.nix | 6 | ||||
| -rw-r--r-- | makefu/2configs/temp/elkstack.nix | 5 | ||||
| -rw-r--r-- | makefu/2configs/temp/sabnzbd.nix | 5 | 
3 files changed, 16 insertions, 0 deletions
| diff --git a/makefu/2configs/temp/8812au.nix b/makefu/2configs/temp/8812au.nix new file mode 100644 index 000000000..9587171b3 --- /dev/null +++ b/makefu/2configs/temp/8812au.nix @@ -0,0 +1,6 @@ +{config, pkgs, ...}: +{ +  #boot.extraModulePackages = [ pkgs.rtl8812au ]; +  boot.extraModulePackages = [config.boot.kernelPackages.rtl8812au ]; +  boot.kernelModules = [ "rtl8812au" ]; +} diff --git a/makefu/2configs/temp/elkstack.nix b/makefu/2configs/temp/elkstack.nix new file mode 100644 index 000000000..c6bf1c6d8 --- /dev/null +++ b/makefu/2configs/temp/elkstack.nix @@ -0,0 +1,5 @@ +_: +{ +  services.elasticsearch.enable = true; +  services.kibana.enable = true; +} diff --git a/makefu/2configs/temp/sabnzbd.nix b/makefu/2configs/temp/sabnzbd.nix new file mode 100644 index 000000000..d8eab2732 --- /dev/null +++ b/makefu/2configs/temp/sabnzbd.nix @@ -0,0 +1,5 @@ +{pkgs, ...}: +{ +  services.sabnzbd.enable = true; +  systemd.services.sabnzbd.environment.SSL_CERT_FILE = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"; +} | 
