1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-03-17 19:35:09 +01:00
home-manager/tests/modules/programs/foot/systemd-user-service.nix

15 lines
283 B
Nix
Raw Permalink Normal View History

{
programs.foot = {
enable = true;
server.enable = true;
};
nmt.script = ''
assertPathNotExists home-files/.config/foot/foot.ini
assertFileContent \
home-files/.config/systemd/user/foot.service \
${./systemd-user-service-expected.service}
'';
}