summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2017-12-13 22:58:18 +0100
committerDaiderd Jordan <daiderd@gmail.com>2017-12-13 22:58:18 +0100
commit5894006537fbef90f29825a77ba7abc080dae1f4 (patch)
tree5ecc191cb009365b9c1f2531f7ef73e2325f5baf
parent2c05db6aca4a1442924cd36b56db2e776c26d2be (diff)
whitespace
-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 = {