Some checks failed
Build iso when a new version is pushed / test (push) Failing after 9m15s
17 lines
282 B
Nix
17 lines
282 B
Nix
{ 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
|
|
];
|
|
};
|
|
}
|