1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

cbatticon: add package example

After batticonplus was merged into nixpkgs
This commit is contained in:
Yechiel Worenklein 2025-11-02 12:21:11 +02:00 committed by Austin Horstman
parent 5eaa0072ff
commit 43e205606a

View file

@ -42,7 +42,13 @@ in
services.cbatticon = {
enable = lib.mkEnableOption "cbatticon";
package = lib.mkPackageOption pkgs "cbatticon" { };
package = lib.mkPackageOption pkgs "cbatticon" {
example = "pkgs.batticonplus";
extraDescription = ''
Use {var}`pkgs.batticonplus`
for wayland support.
'';
};
commandCriticalLevel = mkOption {
type = types.nullOr types.lines;