remove discord from iso build
Some checks failed
Build iso when a new version is pushed / test (push) Failing after 2m17s
Some checks failed
Build iso when a new version is pushed / test (push) Failing after 2m17s
This commit is contained in:
15
homeConfigs/modules/discord.nix
Normal file
15
homeConfigs/modules/discord.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user