mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
19 lines
440 B
Nix
19 lines
440 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
home.file.testfile.text = "not special";
|
||
|
specialization.test.configuration = {
|
||
|
home.file.testfile.text = "very special";
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/testfile
|
||
|
assertFileContains home-files/testfile "not special"
|
||
|
|
||
|
assertFileExists specialization/test/home-files/testfile
|
||
|
assertFileContains specialization/test/home-files/testfile "not special"
|
||
|
'';
|
||
|
}
|