From a18df3542da6d826a2f028dc054162a443f4446c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Sat, 23 May 2026 14:34:23 -0600 Subject: [PATCH] feat(hydrus): init --- modules/home/hydrus.nix | 13 +++++++++++++ users/msyds/default.nix | 1 + 2 files changed, 14 insertions(+) create mode 100644 modules/home/hydrus.nix diff --git a/modules/home/hydrus.nix b/modules/home/hydrus.nix new file mode 100644 index 0000000..6038853 --- /dev/null +++ b/modules/home/hydrus.nix @@ -0,0 +1,13 @@ +{ config, lib, pkgs, ... }: + +let cfg = config.sydnix.hydrus; +in { + options.sydnix.hydrus = { + enable = lib.mkEnableOption "hydrus"; + }; + + config = lib.mkIf cfg.enable { + home.packages = [ pkgs.hydrus ]; + sydnix.impermanence.directories = [ "Hydrus" ]; + }; +} diff --git a/users/msyds/default.nix b/users/msyds/default.nix index bcecd1e..b99d3db 100644 --- a/users/msyds/default.nix +++ b/users/msyds/default.nix @@ -54,6 +54,7 @@ haskell.enable = true; kerbal-space-program.enable = on "sydpc"; libreoffice.enable = on "fruitbook"; + hydrus.enable = on "sydpc"; sops = { enable = true; keyFile = "/persist/private-keys/age/crumb";