1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 08:31:03 +01:00
home-manager/tests/modules/programs/hyprshot/basic-configuration.nix
Austin Horstman 5b45dcf479 tests/hyprshot: add tests
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-10-05 17:19:26 -05:00

13 lines
243 B
Nix

{
config = {
programs.hyprshot = {
enable = true;
saveLocation = "dummy";
};
nmt.script = ''
assertFileContains home-path/etc/profile.d/hm-session-vars.sh \
'export HYPRSHOT_DIR="dummy"'
'';
};
}