mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
7c04351a57
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`.
18 lines
337 B
Nix
18 lines
337 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
home.file."using-text".text = ''
|
|
This is the
|
|
expected text.
|
|
'';
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/using-text
|
|
assertFileIsNotExecutable home-files/using-text
|
|
assertFileContent home-files/using-text ${./text-expected.txt}
|
|
'';
|
|
};
|
|
}
|