Add playerctl service
This commit is contained in:
parent
6aee8be124
commit
c2a910524c
2 changed files with 7 additions and 0 deletions
|
@ -2,5 +2,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
./alacritty.nix
|
./alacritty.nix
|
||||||
|
./playerctl.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
6
home/features/desktop/common/playerctl.nix
Normal file
6
home/features/desktop/common/playerctl.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
home.packages = with pkgs; [playerctl];
|
||||||
|
services.playerctld = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue