dotfiles/modules/applications/discord.nix

10 lines
214 B
Nix
Raw Normal View History

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