mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-05 16:41:04 +01:00
13 lines
243 B
Nix
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"'
|
|
'';
|
|
};
|
|
}
|