feat(hydrus): init

This commit is contained in:
2026-05-23 14:34:23 -06:00
parent 24b175da51
commit a18df3542d
2 changed files with 14 additions and 0 deletions

13
modules/home/hydrus.nix Normal file
View File

@@ -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" ];
};
}