10 lines
196 B
Nix
Raw Normal View History

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