removed zen browser

This commit is contained in:
willifan 2025-08-03 16:18:45 +02:00
parent 4d977176bc
commit 19aceb4879
5 changed files with 3 additions and 49 deletions

View file

@ -15,7 +15,6 @@
./garbage-collect.nix
./keyd.nix
./locales.nix
./mimetype.nix
./networking.nix
./optimise.nix
./options.nix

View file

@ -1,4 +1,4 @@
{ lib, config, pkgs, inputs, system, ... }:
{ lib, config, pkgs, ... }:
lib.mkIf config.desktop.enable {
environment.systemPackages =
@ -27,10 +27,6 @@ lib.mkIf config.desktop.enable {
prusa-slicer
UVtools
audacity
])
++
[
inputs.zen.packages.${system}.specific
];
]);
}

View file

@ -1,15 +0,0 @@
{ ... }:
{
xdg.mime.defaultApplications = {
"application/pdf" = "zen.desktop";
"text/html" = "zen.desktop";
"x-scheme-handler/http" = "zen.desktop";
"x-scheme-handler/https" = "zen.desktop";
"x-scheme-handler/about" = "zen.desktop";
"x-scheme-handler/unknown" = "zen.desktop";
};
environment.sessionVariables.DEFAULT_BROWSER = "zen";
}