playerctl package

Zynh Ludwig 2024-07-10 18:05:13 -07:00
parent e6af7b7403
commit 8be0b36449
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ lib, config, ... }:
{ lib, config, pkgs, ... }:
let
cfg = config.snowhawk.playerctl;
@ -10,5 +10,9 @@ in
config = lib.mkIf cfg.enable {
services.playerctld.enable = true;
home.packages = with pkgs; [
playerctl
];
};
}