dots-of-war/files/nix-stuff/nixpkgs/term.nix
2020-08-09 20:32:27 +02:00

13 lines
200 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.locate;
in
{
options.term = {
enable = mkOption {
type = types.bool;
default = false;
};
};
}