All checks were successful
Build iso when a new version is pushed / test (push) Successful in 12m14s
17 lines
372 B
Nix
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
|
|
];
|
|
};
|
|
}
|