mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
14 lines
400 B
Nix
14 lines
400 B
Nix
{
|
|
home.file.testfile.text = "not special";
|
|
specialisation.test.configuration = {
|
|
home.file.testfile.text = "very special";
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/testfile
|
|
assertFileContains home-files/testfile "not special"
|
|
|
|
assertFileExists specialisation/test/home-files/testfile
|
|
assertFileContains specialisation/test/home-files/testfile "not special"
|
|
'';
|
|
}
|