dots-of-war/files/nix-stuff/nixpkgs/term.nix

14 lines
200 B
Nix
Raw Normal View History

2020-08-09 18:32:27 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.locate;
in
{
options.term = {
enable = mkOption {
type = types.bool;
default = false;
};
};
}