commit a6ea77f71ef901e47d4b097e20fb56c39f5560a9
parent b5f9af82b1002a11c90d71cc85afffcec477d477
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Thu, 21 Aug 2025 21:24:29 +0200
parent b5f9af82b1002a11c90d71cc85afffcec477d477
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Thu, 21 Aug 2025 21:24:29 +0200
configs/home-manager/zaphyra/services: add `gomuks-web`
2 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/config/home-manager/zaphyra/configure/niri.nix b/config/home-manager/zaphyra/configure/niri.nix @@ -28,6 +28,7 @@ in services.swayidle services.wlsunset services.playerctl + services.gomuks-web programs.app2unit programs.swaylock
diff --git a/config/home-manager/zaphyra/services/gomuks-web.nix b/config/home-manager/zaphyra/services/gomuks-web.nix @@ -0,0 +1,17 @@ +{ config, ... }: + +{ + + home.persistence."/nix/persist/home/${config.home.username}".directories = [ + "gomuks/.config/gomuks" + "gomuks/.local/share/gomuks" + "gomuks/.local/state/gomuks" + "gomuks/.cache/gomuks" + ]; + + tgc.services.gomuks-web = { + enable = true; + disableAuth = true; + }; + +}