dotfiles/modules/applications/discord.nix

10 lines
196 B
Nix
Raw Normal View History

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