mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
10 lines
216 B
Nix
10 lines
216 B
Nix
{ pkgs, lib, identity, gui, ... }: {
|
|
|
|
config = lib.mkIf gui.enable {
|
|
home-manager.users.${identity.user} = {
|
|
nixpkgs.config.allowUnfree = true;
|
|
home.packages = with pkgs; [ discord ];
|
|
};
|
|
};
|
|
}
|