summaryrefslogtreecommitdiff
path: root/home-manager
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2026-01-13 17:36:42 -0500
committertriethyl <triethylammonium@pm.me>2026-01-13 17:36:42 -0500
commitb91cf3c1c9fc5c9c2ee7476750554c1286be7abf (patch)
tree9f3177411f32fa5452d380ec7c99124f7a3aeb7e /home-manager
parent22491efd809a9343b73b604cf4f25430e86684c9 (diff)
home-manager: add anki feature
Diffstat (limited to 'home-manager')
-rw-r--r--home-manager/features/gui/apps/anki.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/home-manager/features/gui/apps/anki.nix b/home-manager/features/gui/apps/anki.nix
new file mode 100644
index 0000000..5ae9728
--- /dev/null
+++ b/home-manager/features/gui/apps/anki.nix
@@ -0,0 +1,15 @@
+{
+ config,
+ pkgs,
+ lib,
+ ...
+}: let
+ cfg = config.features.gui.apps.anki;
+in {
+ options.features.gui.apps.anki.enable = lib.mkEnableOption "anki";
+ config = lib.mkIf cfg.enable {
+ programs.anki = {
+ enable = true;
+ };
+ };
+}