mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
10 lines
249 B
Nix
10 lines
249 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselsystems.modules.swayosd = lib.mkEnableOption "swayosd settings";
|
|
config = lib.mkIf config.swarselsystems.modules.swayosd {
|
|
services.swayosd = {
|
|
enable = true;
|
|
topMargin = 0.5;
|
|
};
|
|
};
|
|
}
|