summaryrefslogtreecommitdiff
path: root/hm/env/screenshot.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-20 15:25:38 +0100
committeradikro <adikro@disroot.org>2025-12-20 15:25:38 +0100
commitc1d9af57156f3c95590d9a12c394ee064df9696e (patch)
tree7e515761590c510c30329ef8548c7d84a8e95aaa /hm/env/screenshot.nix
parent791bc419b6dac7c70951981ef6b34cdf85828470 (diff)
added disko config for laptop, added storage and memory modules
Diffstat (limited to 'hm/env/screenshot.nix')
-rw-r--r--hm/env/screenshot.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/hm/env/screenshot.nix b/hm/env/screenshot.nix
new file mode 100644
index 0000000..e61e3de
--- /dev/null
+++ b/hm/env/screenshot.nix
@@ -0,0 +1,16 @@
+{ config, lib, pkgs, ... }:
+let
+ cfg = config.hm.env.screenshot;
+in
+{
+ options.hm.env.screenshot.enable = lib.mkEnableOption "enables screenshot utilities";
+ config = lib.mkIf cfg.enable {
+ programs.satty = {
+ enable = true;
+ };
+ home.packages = with pkgs; [
+ grim
+ slurp
+ ];
+ };
+}