This commit is contained in:
2024-04-28 15:11:56 -06:00
parent 39d2219bb1
commit 39157db0da
20 changed files with 62 additions and 139 deletions

View File

@@ -1,6 +1,4 @@
{ config, lib, pkgs, ... }:
{
{ config, lib, pkgs, ... }: {
options.my.apps.internet.enable = lib.mkEnableOption "enable";
config = lib.mkIf config.my.apps.internet.enable {
programs = {
@@ -10,8 +8,8 @@
languagePacks = [ "en-CA" "es-MX" "it" ];
};
};
services = { psd.enable = true; };
users.users.jawz.packages = with pkgs; ([
services.psd.enable = true;
users.users.jawz.packages = with pkgs; [
nextcloud-client # self-hosted google-drive alternative
fragments # beautiful torrent client
protonmail-bridge # bridge for protonmail
@@ -19,12 +17,9 @@
chromium # web browser with spyware included
telegram-desktop # furry chat
nicotine-plus # remember Ares?
vesktop
(pkgs.discord.override {
withOpenASAR = true;
# withVencord = true;
})
vesktop # screen share with audio discord
discord # :3
# hugo # website engine
]);
];
};
}