mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
16 lines
370 B
Nix
16 lines
370 B
Nix
{ ... }:
|
|
|
|
{
|
|
home.file."source with spaces!".source = ./. + "/source with spaces!";
|
|
|
|
nmt.script = ''
|
|
assertFileExists 'home-files/source with spaces!';
|
|
assertFileContent 'home-files/source with spaces!' \
|
|
${
|
|
builtins.path {
|
|
path = ./. + "/source with spaces!";
|
|
name = "source-with-spaces-expected";
|
|
}
|
|
}
|
|
'';
|
|
}
|