diff --git a/profiles/wm/default.nix b/profiles/wm/default.nix index 473d49d..1eeb7a8 100644 --- a/profiles/wm/default.nix +++ b/profiles/wm/default.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: +{ config, lib, pkgs, ... }: let cfg = config.my.profiles.wm; in @@ -23,5 +23,11 @@ in # Auto disk mounter my.home.udiskie.enable = true; }) + + (lib.mkIf (cfg.windowManager != null) { + environment.systemPackages = with pkgs; [ + ambroisie.dragger + ]; + }) ]; }