aboutsummaryrefslogtreecommitdiff
path: root/modules/lib/default.nix
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2019-01-16 02:14:14 +0100
committerRobert Helgesson <robert@rycee.net>2019-01-19 12:44:58 +0100
commit7c04351a57bb36133e6cf3b609e573b9e18b8eec (patch)
treed13a92128c443860acf79ba99dbe15b2ad9b21bb /modules/lib/default.nix
parent46f787950ab7cd76e02a0e15af12756321f926c9 (diff)
files: allow a wider range of source file names
In particular support source files whose name start with `.` or contain characters not allowed in the nix store, such as spaces. Also add some test cases for `home.file`.
Diffstat (limited to 'modules/lib/default.nix')
-rw-r--r--modules/lib/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/lib/default.nix b/modules/lib/default.nix
index 9ca0dad6b88..754713cab5d 100644
--- a/modules/lib/default.nix
+++ b/modules/lib/default.nix
@@ -16,6 +16,8 @@
entryBefore = d.dagEntryBefore;
};
+ strings = import ./strings.nix { inherit lib; };
+
shell = import ./shell.nix { inherit lib; };
zsh = import ./zsh.nix { inherit lib; };
}