From 4ec380e1286525afadc0616c69b0b0ad6a04eb3b Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 3 Jun 2021 17:33:09 +0200 Subject: [PATCH] profiles: wm: enable 'i3' helpers `flameshot` and `udiskie` provide some functionnality that would usually be found in an actual DE. It makes more sense to activate them here instead of in the home configuration, so I will remove it in the next commit. --- profiles/wm.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/profiles/wm.nix b/profiles/wm.nix index a2e9dd2..473d49d 100644 --- a/profiles/wm.nix +++ b/profiles/wm.nix @@ -18,6 +18,10 @@ in services.xserver.windowManager.i3.enable = true; # i3 settings my.home.wm.windowManager = "i3"; + # Screenshot tool + my.home.flameshot.enable = true; + # Auto disk mounter + my.home.udiskie.enable = true; }) ]; }