mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
27 lines
643 B
Nix
27 lines
643 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
xdg.configFile.test.text = "config";
|
||
|
xdg.dataFile.test.text = "data";
|
||
|
home.file.test.text = "home";
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/test
|
||
|
assertFileExists home-files/.local/share/test
|
||
|
assertFileExists home-files/test
|
||
|
assertFileContent \
|
||
|
home-files/.config/test \
|
||
|
${builtins.toFile "test" "config"}
|
||
|
assertFileContent \
|
||
|
home-files/.local/share/test \
|
||
|
${builtins.toFile "test" "data"}
|
||
|
assertFileContent \
|
||
|
home-files/test \
|
||
|
${builtins.toFile "test" "home"}
|
||
|
'';
|
||
|
};
|
||
|
}
|