6 lines
194 B
Nix
Raw Normal View History

2021-11-20 01:33:12 +03:00
{ config, pkgs, lib, ... }: {
config = lib.mkIf (config.device == "AMD-Workstation") {
services.ratbagd.enable = true;
home-manager.users.alukard.home.packages = [ pkgs.piper ];
};
}