7 lines
172 B
Nix
7 lines
172 B
Nix
{ lib, nixosConfig, ... }:
|
|
lib.mkIf nixosConfig.sbruder.gui.enable {
|
|
services.easyeffects.enable = true;
|
|
# TODO: Once I have the profiles finished,
|
|
# add them here
|
|
}
|