dotfiles/user-modules/discord/default.nix

23 lines
296 B
Nix
Raw Permalink Normal View History

2024-07-19 12:00:55 +00:00
{
config,
lib,
pkgs,
...
}:
2024-07-18 11:48:49 +00:00
with lib;
let
cfg = config.modules.discord;
2024-07-19 12:00:55 +00:00
in
{
2024-07-18 11:48:49 +00:00
options.modules.discord = {
enable = mkEnableOption "discord";
};
config = mkIf cfg.enable {
modules.unfree.allowedPackages = [ "discord" ];
2024-07-19 12:00:55 +00:00
home.packages = with pkgs; [ discord ];
2024-07-18 11:48:49 +00:00
};
2024-07-19 12:00:55 +00:00
}