blob: f47433edac89e7527e767fb200db9a0379003ee4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ config, pkgs, lib, ... }:
with builtins // lib;
let
cfg = config.kfmon;
in {
options.kfmon = {
enable = mkEnableOption "koreader";
generate = mkOption {
type = types.lines;
default = "";
description = "Script used to generate the KFMon config";
};
path = mkOption {
type = types.str;
default = ".adds/koreader";
description = "Releative path to KFMon within src";
};
};
}
|