summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/lib/write-text.nix4
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/lib/write-text.nix b/modules/lib/write-text.nix
index a2c87a5..7719a23 100644
--- a/modules/lib/write-text.nix
+++ b/modules/lib/write-text.nix
@@ -5,17 +5,14 @@
with lib;
let
-
fileName = file: last (splitString "/" file);
mkDefaultIf = cond: value: mkIf cond (mkDefault value);
drv = mkTextDerivation (fileName name) config.text;
-
in
{
options = {
-
enable = mkOption {
type = types.bool;
default = true;
@@ -47,7 +44,6 @@ in
Path of the source file.
'';
};
-
};
config = {