Move from firefox to librewolf for dialy browsing

Fix wrong hostname set
This commit is contained in:
Pim Kunis 2024-05-19 13:01:27 +02:00
parent db7238afe3
commit b6b5d8344c
7 changed files with 41 additions and 78 deletions

View file

@ -93,8 +93,6 @@
};
networking = {
hostName = "x260";
wg-quick.interfaces = {
home = {
privateKeyFile = config.age.secrets.wg-quick-home-privkey.path;
@ -136,6 +134,6 @@
nixpkgs.config = {
permittedInsecurePackages = [ "electron-25.9.0" ];
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "vmware-horizon-client" "libfprint-2-tod1-goodix" ];
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "vmware-horizon-client" "libfprint-2-tod1-goodix" "vmware-workstation" ];
};
}