remove discord from iso build
Some checks failed
Build iso when a new version is pushed / test (push) Failing after 2m17s

This commit is contained in:
2025-04-15 15:54:01 +02:00
parent 72f6ae62bc
commit e5c52b4bc5
5 changed files with 26 additions and 4 deletions

View File

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