1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-24 09:13:53 +00:00
ultima/modules/home/programs/custom/torque/default.nix
2024-12-03 23:20:37 +09:00

15 lines
275 B
Nix

{ pkgs, lib, config, ... }:
with lib;
let cfg = config.module.programs.custom.torque;
in {
options = {
module.programs.custom.torque = { enable = mkEnableOption ""; };
};
config =
mkIf cfg.enable { home.packages = [ (pkgs.callPackage ./pkg.nix { }) ]; };
}