feat(screencapture): add save-selections

This commit is contained in:
vaaski 2026-01-06 15:41:11 +01:00
parent c31afa6e76
commit e5e7b6e878
No known key found for this signature in database
3 changed files with 14 additions and 0 deletions

View file

@ -41,6 +41,14 @@ with lib;
'';
};
system.defaults.screencapture.save-selections = mkOption {
type = types.nullOr types.bool;
default = null;
description = ''
Remember the selection window of the last screencapture. The default is true.
'';
};
system.defaults.screencapture.show-thumbnail = mkOption {
type = types.nullOr types.bool;
default = null;