From 44cad6b52bec990780bc3b90ba55bd2211ca7701 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 5 Apr 2021 01:39:01 +0000 Subject: [PATCH] home: wm: i3: use flameshot service directly Instead of starting `flameshot` with `i3`, use the provided service. --- home/wm/i3.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home/wm/i3.nix b/home/wm/i3.nix index af22bc5..819d880 100644 --- a/home/wm/i3.nix +++ b/home/wm/i3.nix @@ -28,9 +28,12 @@ let in { config = lib.mkIf isEnabled { + my.home = { + flameshot.enable = true; + }; + home.packages = with pkgs; [ arandr # Used by a mapping - flameshot # Used by a mapping, started at startup playerctl # Used by a mapping ]; @@ -292,9 +295,6 @@ in startup = [ # FIXME # { commdand; always; notification; } - { - command = "flameshot"; - } ]; }; };