diff --git a/modules/home/qalculate.nix b/modules/home/qalculate.nix new file mode 100644 index 0000000..a6436c6 --- /dev/null +++ b/modules/home/qalculate.nix @@ -0,0 +1,15 @@ +{ config, lib, pkgs, ... }: + +let cfg = config.sydnix.qalculate; +in { + options.sydnix.qalculate = { + enable = lib.mkEnableOption "Qalculate"; + }; + + config = lib.mkIf cfg.enable { + home.packages = [ + pkgs.libqalculate + pkgs.qalculate-gtk + ]; + }; +}