mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-18 19:23:39 -05:00
16 lines
303 B
Nix
16 lines
303 B
Nix
|
{pkgs, ...}: {
|
||
|
imports = [
|
||
|
./arrpc.nix
|
||
|
];
|
||
|
home = {
|
||
|
packages = with pkgs;[
|
||
|
legcord
|
||
|
cinny-desktop
|
||
|
element-desktop
|
||
|
(pkgs.discord.override {
|
||
|
withVencord = true;
|
||
|
})
|
||
|
vesktop
|
||
|
];
|
||
|
};
|
||
|
}
|