2 Commits

Author SHA1 Message Date
4d140208b3 change name for chromium apps on iso
All checks were successful
Build iso when a new version is pushed / test (push) Successful in 12m14s
2025-04-16 15:02:19 +02:00
d965848b31 create iso only when there is a push to master
Some checks failed
Build iso when a new version is pushed / test (push) Has been cancelled
2025-04-16 14:57:32 +02:00
4 changed files with 21 additions and 18 deletions

View File

@ -1,6 +1,9 @@
name: Build iso when a new version is pushed name: Build iso when a new version is pushed
run-name: iso building run-name: iso building
on: [push] on:
push:
branches:
- 'master'
jobs: jobs:
test: test:

View File

@ -1,5 +1,5 @@
{ lib, pkgs, ... }: { lib, pkgs, ... }:
{ {
mods.discord.enable = false; mods.nonChromium.enable = false;
} }

View File

@ -1,16 +0,0 @@
{ config, lib, pkgs, ... }:
{
options.mods.discord.enable = lib.mkOption {
type = lib.types.bool;
default = true;
description = "install discord";
};
config = lib.mkIf config.mods.discord.enable {
home.packages = with pkgs;[
discord
google-chrome
];
};
}

View File

@ -0,0 +1,16 @@
{ 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
];
};
}