summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authordavidak <davidak@users.noreply.github.com>2021-03-04 20:28:34 +0100
committerGitHub <noreply@github.com>2021-03-04 20:28:34 +0100
commit00b47419c6e1b7cc5b1905c454a5b62f370e8d6c (patch)
tree135052e1901b3e7072e1233f7cc27eb8b86c85fb /nixos
parent618412c91a1fd7a5997e2a36356ba23fd8351dad (diff)
parent10fa80fd300ce9cd081b578621861332ddf3e411 (diff)
Merge pull request #103705 from freezeboy/add-plik
plik: init at 1.3.1
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/module-list.nix1
-rw-r--r--nixos/modules/services/misc/plikd.nix82
-rw-r--r--nixos/tests/all-tests.nix1
-rw-r--r--nixos/tests/plikd.nix27
4 files changed, 111 insertions, 0 deletions
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index f6fcd5a325b8..f91c21ad5cbb 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -513,6 +513,7 @@
./services/misc/paperless.nix
./services/misc/parsoid.nix
./services/misc/plex.nix
+ ./services/misc/plikd.nix
./services/misc/tautulli.nix
./services/misc/pinnwand.nix
./services/misc/pykms.nix
diff --git a/nixos/modules/services/misc/plikd.nix b/nixos/modules/services/misc/plikd.nix
new file mode 100644
index 000000000000..a62dbef1d2af
--- /dev/null
+++ b/nixos/modules/services/misc/plikd.nix
@@ -0,0 +1,82 @@
+{ config, pkgs, lib, ... }:
+
+with lib;
+
+let
+ cfg = config.services.plikd;
+
+ format = pkgs.formats.toml {};
+ plikdCfg = format.generate "plikd.cfg" cfg.settings;
+in
+{
+ options = {
+ services.plikd = {
+ enable = mkEnableOption "the plikd server";
+
+ openFirewall = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Open ports in the firewall for the plikd.";
+ };
+
+ settings = mkOption {
+ type = format.type;
+ default = {};
+ description = ''
+ Configuration for plikd, see <link xlink:href="https://github.com/root-gg/plik/blob/master/server/plikd.cfg"/>
+ for supported values.
+ '';
+ };
+ };
+ };
+
+ config = mkIf cfg.enable {
+ services.plikd.settings = mapAttrs (name: mkDefault) {
+ ListenPort = 8080;
+ ListenAddress = "localhost";
+ DataBackend = "file";
+ DataBackendConfig = {
+ Directory = "/var/lib/plikd";
+ };
+ MetadataBackendConfig = {
+ Driver = "sqlite3";
+ ConnectionString = "/var/lib/plikd/plik.db";
+ };
+ };
+
+ systemd.services.plikd = {
+ description = "Plikd file sharing server";
+ after = [ "network.target" ];
+ wantedBy = [ "multi-user.target" ];
+ serviceConfig = {
+ Type = "simple";
+ ExecStart = "${pkgs.plikd}/bin/plikd --config ${plikdCfg}";
+ Restart = "on-failure";
+ StateDirectory = "plikd";
+ LogsDirectory = "plikd";
+ DynamicUser = true;
+
+ # Basic hardening
+ NoNewPrivileges = "yes";
+ PrivateTmp = "yes";
+ PrivateDevices = "yes";
+ DevicePolicy = "closed";
+ ProtectSystem = "strict";
+ ProtectHome = "read-only";
+ ProtectControlGroups = "yes";
+ ProtectKernelModules = "yes";
+ ProtectKernelTunables = "yes";
+ RestrictAddressFamilies = "AF_UNIX AF_INET AF_INET6 AF_NETLINK";
+ RestrictNamespaces = "yes";
+ RestrictRealtime = "yes";
+ RestrictSUIDSGID = "yes";
+ MemoryDenyWriteExecute = "yes";
+ LockPersonality = "yes";
+ };
+ };
+
+ networking.firewall = mkIf cfg.openFirewall {
+ allowedTCPPorts = [ cfg.settings.ListenPort ];
+ };
+ };
+}
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 7d676e15fa97..fe60b0b83f5a 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -313,6 +313,7 @@ in
pinnwand = handleTest ./pinnwand.nix {};
plasma5 = handleTest ./plasma5.nix {};
pleroma = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./pleroma.nix {};
+ plikd = handleTest ./plikd.nix {};
plotinus = handleTest ./plotinus.nix {};
podman = handleTestOn ["x86_64-linux"] ./podman.nix {};
postfix = handleTest ./postfix.nix {};
diff --git a/nixos/tests/plikd.nix b/nixos/tests/plikd.nix
new file mode 100644
index 000000000000..8fec93c01f6b
--- /dev/null
+++ b/nixos/tests/plikd.nix
@@ -0,0 +1,27 @@
+import ./make-test-python.nix ({ lib, ... }: {
+ name = "plikd";
+ meta = with lib.maintainers; {
+ maintainers = [ freezeboy ];
+ };
+
+ machine = { pkgs, ... }: let
+ in {
+ services.plikd.enable = true;
+ environment.systemPackages = [ pkgs.plik ];
+ };
+
+ testScript = ''
+ # Service basic test
+ machine.wait_for_unit("plikd")
+
+ # Network test
+ machine.wait_for_open_port("8080")
+ machine.succeed("curl --fail -v http://localhost:8080")
+
+ # Application test
+ machine.execute("echo test > /tmp/data.txt")
+ machine.succeed("plik --server http://localhost:8080 /tmp/data.txt | grep curl")
+
+ machine.succeed("diff data.txt /tmp/data.txt")
+ '';
+})