lol

Merge pull request #223388 from 06kellyjac/authelia-move

authelia: move module under security and minor fixes

authored by

Ryan Lahfa and committed by
GitHub
482c7352 4bb072f0

+4 -3
+1 -1
nixos/modules/module-list.nix
··· 1063 1063 ./services/search/opensearch.nix 1064 1064 ./services/search/qdrant.nix 1065 1065 ./services/security/aesmd.nix 1066 + ./services/security/authelia.nix 1066 1067 ./services/security/certmgr.nix 1067 1068 ./services/security/cfssl.nix 1068 1069 ./services/security/clamav.nix ··· 1210 1211 ./services/web-apps/zabbix.nix 1211 1212 ./services/web-servers/agate.nix 1212 1213 ./services/web-servers/apache-httpd/default.nix 1213 - ./services/web-servers/authelia.nix 1214 1214 ./services/web-servers/caddy/default.nix 1215 1215 ./services/web-servers/darkhttpd.nix 1216 1216 ./services/web-servers/fcgiwrap.nix
nixos/modules/services/web-servers/authelia.nix nixos/modules/services/security/authelia.nix
+1 -1
nixos/tests/authelia.nix
··· 1 1 # Test Authelia as an auth server for Traefik as a reverse proxy of a local web service 2 - import ./make-test-python.nix ({ pkgs, ... }: { 2 + import ./make-test-python.nix ({ lib, ... }: { 3 3 name = "authelia"; 4 4 meta.maintainers = with lib.maintainers; [ jk ]; 5 5
+2 -1
pkgs/servers/authelia/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule, installShellFiles, callPackage }: 1 + { lib, fetchFromGitHub, buildGoModule, installShellFiles, callPackage, nixosTests }: 2 2 3 3 let 4 4 inherit (import ./sources.nix { inherit fetchFromGitHub; }) pname version src vendorHash; ··· 56 56 # if overriding replace the postPatch to put your web UI output in internal/server/public_html 57 57 inherit web; 58 58 updateScript = ./update.sh; 59 + tests = { inherit (nixosTests) authelia; }; 59 60 }; 60 61 61 62 meta = with lib; {