mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-09 15:10:19 +02:00
9 lines
181 B
Nix
9 lines
181 B
Nix
{config, pkgs, ...}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
(discord.override {
|
|
withOpenASAR = true; # can do this here too
|
|
withVencord = true;
|
|
})
|
|
];
|
|
}
|