NixOS/home/modules/sway/swayosd.nix

13 lines
159 B
Nix
Raw Permalink Normal View History

2024-06-12 09:54:11 +07:00
{ config, lib, ... }:
with lib;
let
cfg = config.profile.sway;
in
{
config = mkIf cfg.enable {
services.swayosd = {
enable = true;
};
};
}