Add playerctl service

This commit is contained in:
GHOSCHT 2023-12-27 22:47:58 +01:00
parent 6aee8be124
commit c2a910524c
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82
2 changed files with 7 additions and 0 deletions

View file

@ -2,5 +2,6 @@
imports = [
./firefox.nix
./alacritty.nix
./playerctl.nix
];
}

View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
home.packages = with pkgs; [playerctl];
services.playerctld = {
enable = true;
};
}