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";