20 lines
293 B
Nix
20 lines
293 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
device,
|
|
...
|
|
}: {
|
|
imports = [inputs.vicinae.homeManagerModules.default];
|
|
services.vicinae = {
|
|
enable = device.is "ryu";
|
|
systemd = {
|
|
enable = true;
|
|
autoStart = true;
|
|
};
|
|
};
|
|
home.packages = with pkgs; [
|
|
# pulseaudio
|
|
playerctl
|
|
];
|
|
}
|