This commit is contained in:
ediblerope 2026-03-28 14:54:56 +00:00 committed by GitHub
parent 6b2b8ee7c0
commit d0ed3fe5c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 19 additions and 2 deletions

16
apps/zen.nix Normal file
View file

@ -0,0 +1,16 @@
#apps/zen.nix
{ inputs, pkgs, lib, config, ... }:
{
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
environment.systemPackages = [
(pkgs.wrapFirefox
inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.zen-browser-unwrapped
{
extraPolicies = {
DisableTelemetry = true;
};
}
)
];
};
}

View file

@ -15,6 +15,7 @@
./settings/users.nix ./settings/users.nix
./apps/fastfetch.nix ./apps/fastfetch.nix
./apps/flatpaks.nix ./apps/flatpaks.nix
./apps/zen.nix
# Services # # Services #
./services/server-permissions.nix ./services/server-permissions.nix

View file

@ -20,7 +20,7 @@
wowup-cf wowup-cf
adwsteamgtk adwsteamgtk
proton-vpn proton-vpn
inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default #inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default
]; ];
services.lact.enable = true; services.lact.enable = true;

View file

@ -18,7 +18,7 @@
vlc vlc
geary geary
proton-vpn proton-vpn
inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default #inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default
]; ];