Files
nix-config/homeConfigs/modules/nonChromium.nix
tomoron 4d140208b3
All checks were successful
Build iso when a new version is pushed / test (push) Successful in 12m14s
change name for chromium apps on iso
2025-04-16 15:02:19 +02:00

17 lines
372 B
Nix

{ config, lib, pkgs, ... }:
{
options.mods.nonChromium.enable = lib.mkOption {
type = lib.types.bool;
default = true;
description = "all chromium/electron based application can't be built by act-runner, so they can't be in the iso";
};
config = lib.mkIf config.mods.nonChromium.enable {
home.packages = with pkgs;[
discord
google-chrome
];
};
}