From 9117df1e721ee7037ae6bc5f630319c561a08485 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 15 Oct 2021 17:12:20 +0200 Subject: [PATCH] home: wm: i3: don't add 'dragger' through profile --- home/wm/i3/default.nix | 1 + profiles/wm/default.nix | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/home/wm/i3/default.nix b/home/wm/i3/default.nix index 2a99958..a0b63be 100644 --- a/home/wm/i3/default.nix +++ b/home/wm/i3/default.nix @@ -70,6 +70,7 @@ in { config = lib.mkIf isEnabled { home.packages = with pkgs; [ + ambroisie.dragger # drag-and-drop from the CLI ambroisie.i3-get-window-criteria # little helper for i3 configuration arandr # Used by a mapping pamixer # Used by a mapping diff --git a/profiles/wm/default.nix b/profiles/wm/default.nix index 1eeb7a8..bf9d3f9 100644 --- a/profiles/wm/default.nix +++ b/profiles/wm/default.nix @@ -23,11 +23,5 @@ in # Auto disk mounter my.home.udiskie.enable = true; }) - - (lib.mkIf (cfg.windowManager != null) { - environment.systemPackages = with pkgs; [ - ambroisie.dragger - ]; - }) ]; }