From ba7685dc0602f01e75a023cbefd5cee285d36570 Mon Sep 17 00:00:00 2001 From: roxwize Date: Wed, 1 Jan 2025 20:38:38 -0500 Subject: [PATCH] ~ --- configs/rmpc/config.ron | 6 +++--- configs/rmpc/themes/neralie.ron | 2 +- nixos/home/firefox.nix | 26 ++++++++++++++++++++++++++ 3 files changed, 30 insertions(+), 4 deletions(-) diff --git a/configs/rmpc/config.ron b/configs/rmpc/config.ron index 74610a3..feced91 100644 --- a/configs/rmpc/config.ron +++ b/configs/rmpc/config.ron @@ -26,8 +26,8 @@ "p": TogglePause, "s": Stop, "q": Quit, - "": NextTab, - "": PreviousTab, + "": NextTab, + "": PreviousTab, ">": NextTrack, "<": PreviousTrack, "": SeekForward, @@ -66,7 +66,7 @@ "n": NextResult, "": Add, "A": AddAll, - "": Delete, + "": Delete, "r": Rename, "": Top, "": Bottom, diff --git a/configs/rmpc/themes/neralie.ron b/configs/rmpc/themes/neralie.ron index 720e4a0..0a524d4 100644 --- a/configs/rmpc/themes/neralie.ron +++ b/configs/rmpc/themes/neralie.ron @@ -21,7 +21,7 @@ current_item_style: (fg: "black", bg: "blue", modifiers: "Bold"), borders_style: (fg: "blue"), highlight_border_style: (fg: "blue"), - symbols: (song: " ", dir: ":", marker: ">", ellipsis: "..."), + symbols: (song: " ", dir: "-", marker: ">", ellipsis: "..."), progress_bar: ( symbols: ["█", "▌", " "], track_style: (fg: "#1e2030"), diff --git a/nixos/home/firefox.nix b/nixos/home/firefox.nix index 3020d6b..af899b4 100644 --- a/nixos/home/firefox.nix +++ b/nixos/home/firefox.nix @@ -1,6 +1,27 @@ { pkgs, ... }: { programs.firefox = { enable = true; + policies = { + DisableTelemetry = true; + DisableFirefoxStudies = true; + EnableTrackingProtection = { + Value = true; + Locked = true; + Cryptomining = true; + Fingerprinting = true; + }; + DisablePocket = true; + ExtensionUpdate = false; + FirefoxHome = { + SponsoredTopSites = false; + Highlights = false; + Pocket = false; + SponsoredPocket = false; + }; + FirefoxSuggest = { + SponsoredSuggestions = false; + }; + }; profiles.default = { isDefault = true; extensions = with pkgs.nur.repos.rycee.firefox-addons; [ @@ -12,6 +33,7 @@ violentmonkey ]; settings = { + "browser.aboutConfig.showWarning" = false; "browser.newtabpage.activity-stream.default.sites" = "https://en.wikipedia.org/"; "browser.newtabpage.activity-stream.discoverystream.enabled" = false; "browser.newtabpage.activity-stream.feeds.telemetry" = false; @@ -56,6 +78,10 @@ name = "NixOS wiki"; url = "https://nixos.wiki/"; } + { + name = "Nix functions"; + url = "https://teu5us.github.io/nix-lib.html"; + } ]; search = { default = "DuckDuckGo";