Updated firefox configuration

This commit is contained in:
xeovalyte 2024-06-03 18:26:34 +02:00
parent 114b4f08a6
commit 2e25cdebf6
Signed by: xeovalyte
SSH Key Fingerprint: SHA256:kSQDrQDmKzljJzfGYcd3m9RqHi4h8rSwkZ3sQ9kBURo
3 changed files with 47 additions and 19 deletions

24
flake.lock generated
View File

@ -25,11 +25,11 @@
},
"locked": {
"dir": "pkgs/firefox-addons",
"lastModified": 1716909762,
"narHash": "sha256-4x85qOYW7mdhVBZKaEpFmab0XLwLhqgdPL0ZatCsiQ8=",
"lastModified": 1717316653,
"narHash": "sha256-91VBjCb9A5Sv1N7LpBg0OzTG0DKpvXVAnIT01Ba4lOw=",
"owner": "rycee",
"repo": "nur-expressions",
"rev": "befbf6436c4b2f834e938056d67be151c4c42ec4",
"rev": "29a3b4c8d5f21dcb359a91d88fd94ae4aa3e6a47",
"type": "gitlab"
},
"original": {
@ -77,11 +77,11 @@
]
},
"locked": {
"lastModified": 1716610319,
"narHash": "sha256-NAMI7NvMzeE3aqX2pPcybs0PqRAXWWZMCVXF+7Tu4sQ=",
"lastModified": 1717203051,
"narHash": "sha256-8ZgIn3hC0G0lSOyZhPw2RpJj7ZoVfTKQZ88URVOpddo=",
"owner": "getchoo",
"repo": "nix-exprs",
"rev": "1512963380a2618ad4ff0d7a929143d4257ec3b6",
"rev": "ad58ceb19c68de2bd18c765fd813611f8db6df62",
"type": "github"
},
"original": {
@ -186,11 +186,11 @@
"systems": "systems_4"
},
"locked": {
"lastModified": 1716742013,
"narHash": "sha256-seOWIKi6jXE1BIQ6FLXUMe0h54cLwAxCCiL8bXFx60Q=",
"lastModified": 1716987277,
"narHash": "sha256-l8aa+XPDbM3Mf3W4ukC/tBBHVZE8A3att4KLXrnyKSI=",
"owner": "hyprwm",
"repo": "hyprlock",
"rev": "768cd3ea525bbd1ed2dde5928b0843129274b50d",
"rev": "e07d4110dc0b9d1786403aa760232564ad28b6fa",
"type": "github"
},
"original": {
@ -250,11 +250,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1716509168,
"narHash": "sha256-4zSIhSRRIoEBwjbPm3YiGtbd8HDWzFxJjw5DYSDy1n8=",
"lastModified": 1716948383,
"narHash": "sha256-SzDKxseEcHR5KzPXLwsemyTR/kaM9whxeiJohbL04rs=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "bfb7a882678e518398ce9a31a881538679f6f092",
"rev": "ad57eef4ef0659193044870c731987a6df5cf56b",
"type": "github"
},
"original": {

View File

@ -24,7 +24,7 @@
wayland.windowManager.hyprland = {
enable = true;
settings = {
monitor = if hostName == "xv-laptop" then ",preferred,auto,1.4" else ",preferred,auto,auto";
monitor = if hostName == "xv-laptop" then ",preferred,auto,1.333" else ",preferred,auto,auto";
exec-once = [
"waybar"

View File

@ -7,7 +7,40 @@
programs.firefox = {
enable = true;
# nativeMessagingHosts = [ pkgs.unstable.firefoxpwa ];
nativeMessagingHosts = [ pkgs.unstable.firefoxpwa ];
policies = {
DisableTelemetry = true;
DisableFirefoxStudies = true;
EnableTrackingProtection = {
Value = true;
Locked = true;
Cryptomining = true;
Fingerprinting = true;
};
DisablePocket = true;
DisableFirefoxAccounts = true;
DisableAccounts = true;
DontCheckDefaultBrowser = true;
DisplayBookmarksToolbar = "never";
ExtensionSettings = {
"nl-NL@dictionaries.addons.mozilla.org" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/woordenboek-nederlands/latest.xpi";
installation_mode = "force_installed";
};
"uBlock0@raymondhill.net" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
installation_mode = "force_installed";
};
"{446900e4-71c2-419f-a6a7-df9c091e268b}" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/bitwarden-password-manager/latest.xpi";
installation_mode = "force_installed";
};
"firefoxpwa@filips.si" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/pwas-for-firefox/latest.xpi";
installation_mode = "force_installed";
};
};
};
profiles.xeovalyte = {
search.engines = {
"Nix" = {
@ -78,11 +111,6 @@
];
"signon.rememberSignons" = false;
};
extensions = with inputs.firefox-addons.packages."x86_64-linux"; [
bitwarden
ublock-origin
];
};
};
}