options follow my.schema to avoid conflicts
This commit is contained in:
@@ -1,27 +1,30 @@
|
||||
{ config, pkgs, ... }:
|
||||
{ config, pkgs, lib, unstable, ... }:
|
||||
|
||||
{
|
||||
programs = {
|
||||
geary.enable = true;
|
||||
firefox = {
|
||||
enable = true;
|
||||
languagePacks = [ "en-CA" "es-MX" "it" ];
|
||||
options.my.apps.internet.enable = lib.mkEnableOption "enable";
|
||||
config = lib.mkIf config.my.apps.internet.enable {
|
||||
programs = {
|
||||
geary.enable = true;
|
||||
firefox = {
|
||||
enable = true;
|
||||
languagePacks = [ "en-CA" "es-MX" "it" ];
|
||||
};
|
||||
};
|
||||
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
|
||||
tor-browser-bundle-bin # dark web, so dark!
|
||||
chromium # web browser with spyware included
|
||||
telegram-desktop # furry chat
|
||||
nicotine-plus # remember Ares?
|
||||
vesktop
|
||||
(pkgs.discord.override {
|
||||
withOpenASAR = true;
|
||||
# withVencord = true;
|
||||
})
|
||||
# hugo # website engine
|
||||
]);
|
||||
};
|
||||
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
|
||||
tor-browser-bundle-bin # dark web, so dark!
|
||||
chromium # web browser with spyware included
|
||||
telegram-desktop # furry chat
|
||||
nicotine-plus # remember Ares?
|
||||
vesktop
|
||||
(pkgs.discord.override {
|
||||
withOpenASAR = true;
|
||||
# withVencord = true;
|
||||
})
|
||||
# hugo # website engine
|
||||
]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user