aboutsummaryrefslogtreecommitdiff
path: root/modules/customs/soft-serve
diff options
context:
space:
mode:
authortdback <tyler@tdback.net>2025-01-16 19:57:13 -0500
committertdback <tyler@tdback.net>2025-01-16 19:57:13 -0500
commit88017f5a874478dd82f306a5df88c38a8d06fcb6 (patch)
tree8806c58c4f21bb6a56d8530df8a93b256d44b4f3 /modules/customs/soft-serve
parent01d012473d4311d4f4e5a0831d912bc4b8c61639 (diff)
fix: format flake with `nixfmt-rfc-style`
Diffstat (limited to 'modules/customs/soft-serve')
-rw-r--r--modules/customs/soft-serve/default.nix15
1 files changed, 10 insertions, 5 deletions
diff --git a/modules/customs/soft-serve/default.nix b/modules/customs/soft-serve/default.nix
index 05156fd..102ee1c 100644
--- a/modules/customs/soft-serve/default.nix
+++ b/modules/customs/soft-serve/default.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
with lib;
let
cfg = config.services.soft-serve;
@@ -39,10 +44,10 @@ in
systemd.services.soft-serve = {
description = "Soft Serve git server";
- documentation = lists.singleton docUrl;
- requires = lists.singleton "network-online.target";
- after = lists.singleton "network-online.target";
- wantedBy = lists.singleton "multi-user.target";
+ documentation = [ docUrl ];
+ requires = [ "network-online.target" ];
+ after = [ "network-online.target" ];
+ wantedBy = [ "multi-user.target" ];
environment.SOFT_SERVE_DATA_PATH = dataDir;
serviceConfig = {
Type = "simple";