framework: move default browser to zen

This commit is contained in:
Natsu Kagami 2025-02-22 15:40:03 +01:00
parent 0ada1ba34f
commit c678fc9009
Signed by: nki
GPG key ID: 55A032EB38B49ADB
2 changed files with 3 additions and 1 deletions

View file

@ -114,6 +114,7 @@
sops-nix.nixosModules.sops sops-nix.nixosModules.sops
inputs.lix-module.nixosModules.default inputs.lix-module.nixosModules.default
]; ];
config.nix.settings.extra-deprecated-features = [ "url-literals" ]; # So lix won't complain
}; };
common-nixos = stable: { ... }: { common-nixos = stable: { ... }: {
imports = [ imports = [

View file

@ -29,7 +29,8 @@
# Graphical set up # Graphical set up
linux.graphical.type = "wayland"; linux.graphical.type = "wayland";
linux.graphical.wallpaper = ./images/wallpaper_0.png; linux.graphical.wallpaper = ./images/wallpaper_0.png;
linux.graphical.defaults.webBrowser.package = pkgs.librewolf; linux.graphical.defaults.webBrowser.package = pkgs.zen-browser-bin;
linux.graphical.defaults.webBrowser.desktopFile = "zen.desktop";
# Enable sway # Enable sway
programs.my-sway.enable = true; programs.my-sway.enable = true;
programs.my-sway.fontSize = 14.0; programs.my-sway.fontSize = 14.0;