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