mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-24 09:13:53 +00:00
15 lines
275 B
Nix
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 { }) ]; };
|
|
}
|
|
|