mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 01:19:32 +08:00
21 lines
418 B
Nix
21 lines
418 B
Nix
{
|
|
config = {
|
|
programs.workstyle = {
|
|
enable = true;
|
|
systemd = {
|
|
enable = true;
|
|
debug = true;
|
|
target = "a.target";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/workstyle/config.toml
|
|
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/workstyle.service \
|
|
${./systemd-user-service-expected-debug.service}
|
|
'';
|
|
};
|
|
}
|