Skip to content

Commit 28459db

Browse files
committed
feat(extractors/services): add atuin
1 parent 7e1be84 commit 28459db

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

icons/services/atuin.svg

+1
Loading

nixos/extractors/services.nix

+10
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ in {
4848
details.listen = mkIf (address != null && port != null) {text = "${address}:${toString port}";};
4949
};
5050

51+
atuin = let
52+
address = config.services.atuin.host or null;
53+
port = config.services.atuin.port or null;
54+
in
55+
mkIf config.services.atuin.enable {
56+
name = "Atuin";
57+
icon = "services.atuin";
58+
details.listen = mkIf (address != null && port != null) {text = "${address}:${toString port}";};
59+
};
60+
5161
authelia = let
5262
instances =
5363
filterAttrs (_: v: v.enable) config.services.authelia.instances;

0 commit comments

Comments
 (0)