7 lines
172 B
Nix
7 lines
172 B
Nix
{ systemConfig, lib, ... }:
|
|
{
|
|
stylix.targets = lib.mkIf systemConfig.auto_styling.enable {
|
|
firefox.enable = true;
|
|
zen-browser.profileNames = [ "lilith" ];
|
|
};
|
|
}
|