2017-01-02 19:55:06 +00:00
|
|
|
{ lib, mkTextDerivation }:
|
|
|
|
|
|
|
|
{ config, name, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2017-01-04 19:18:58 +00:00
|
|
|
fileName = file: last (splitString "/" file);
|
2017-01-04 23:37:14 +00:00
|
|
|
mkDefaultIf = cond: value: mkIf cond (mkDefault value);
|
2017-01-04 19:18:58 +00:00
|
|
|
|
|
|
|
drv = mkTextDerivation (fileName name) config.text;
|
2017-01-02 19:55:06 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Whether this file should be generated.
|
|
|
|
This option allows specific files to be disabled.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
text = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Text of the file.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
target = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = name;
|
|
|
|
description = ''
|
|
|
|
Name of symlink. Defaults to the attribute name.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
source = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
description = ''
|
|
|
|
Path of the source file.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
2017-01-05 22:23:59 +00:00
|
|
|
source = mkDefault drv;
|
2017-01-02 19:55:06 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
}
|