aboutsummaryrefslogtreecommitdiff
path: root/gui/xmonad.nix
diff options
context:
space:
mode:
authorAdrian Kummerlaender2019-01-25 21:52:46 +0100
committerAdrian Kummerlaender2019-01-31 20:36:04 +0100
commit65b564ba723d16b60dd7cd6abf4520f775035d27 (patch)
treeb58e8ed6e32f25a305cc167ed6864d651061b669 /gui/xmonad.nix
parent8f7dac29c3e1d10961dae00a80733f1fb92fd778 (diff)
downloadnixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.tar
nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.tar.gz
nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.tar.bz2
nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.tar.lz
nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.tar.xz
nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.tar.zst
nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.zip
Replace xfce4-screenshooter with flameshot
Diffstat (limited to 'gui/xmonad.nix')
-rw-r--r--gui/xmonad.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/xmonad.nix b/gui/xmonad.nix
index 581dff7..3686cd0 100644
--- a/gui/xmonad.nix
+++ b/gui/xmonad.nix
@@ -26,12 +26,12 @@
home.packages = with pkgs; [
# lockscreen
i3lock
- # screenshooter
- xfce4-12.xfce4-screenshooter
];
services.screen-locker = {
enable = true;
lockCmd = "${pkgs.i3lock}/bin/i3lock -n -c 000000";
};
+
+ services.flameshot.enable = true;
}