dotfiles/modules/applications/discord.nix

10 lines
216 B
Nix
Raw Normal View History

2022-04-30 16:07:58 +00:00
{ pkgs, lib, identity, gui, ... }: {
2022-04-29 02:43:50 +00:00
2022-04-30 16:07:58 +00:00
config = lib.mkIf gui.enable {
home-manager.users.${identity.user} = {
2022-04-29 02:43:50 +00:00
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [ discord ];
};
};
}