nix-config/modules/desktop/default.nix
2025-09-30 14:15:24 +02:00

39 lines
833 B
Nix

{ pkgs, inputs, ... }:
{
home.packages = [
pkgs.adwaita-icon-theme
pkgs.brightnessctl
pkgs.grimblast
pkgs.pamixer
pkgs.wl-clipboard
pkgs.wtype
];
imports = [
inputs.zen-browser.homeModules.beta
./hypr
./theme
];
programs.zen-browser = {
enable = true;
policies = {
DisableAppUpdate = true;
DisableTelemetry = true;
AutofillAddressesEnabled = false;
AutoFillCreditCardEnabled = false;
DisablePocket = true;
DisableProfileImport = true;
DisableSetDesktopBackground = true;
DontCheckDefaultBrowser = true;
HomepageURL = "https://start.hadi.diy";
StartPage = "homepage";
NewTabPage = true;
OfferToSaveLogins = false;
# find more options here: https://mozilla.github.io/policy-templates/
};
};
}