refactor(wayland.utility): utility modules, add gammastep/tools

This commit is contained in:
ooks-io 2024-04-01 18:06:05 +13:00
parent ed8bad82e2
commit ba410aa838
3 changed files with 58 additions and 44 deletions

View file

@ -0,0 +1,27 @@
{ lib, config, pkgs, ... }:
let
cfg = config.homeModules.desktop.wayland.utility.tools;
in
{
config = lib.mkIf cfg.enable {
home = {
packages = with pkgs; [
grim
slurp
libnotify
wl-screenrec
wf-recorder
wl-clipboard
];
};
systemd.user.targets.tray = {
Unit = {
Description = "Home Manager System Tray";
Requires = ["graphical-session-pre.target"];
};
};
};
}