diff --git a/home/firefox.nix b/home/firefox.nix index 32ffa547..12236845 100644 --- a/home/firefox.nix +++ b/home/firefox.nix @@ -1,11 +1,6 @@ { pkgs, arkenfox, ...}: { imports = [arkenfox.hmModules.arkenfox]; - home.file.".mozilla/firefox/ChatGPT/chrome/userChrome.css".text = '' - #TabsToolbar { visibility: collapse !important; } - #nav-bar { visibility: collapse !important; } - ''; - programs.firefox = { enable = true; @@ -27,7 +22,6 @@ OfferToSaveLogins = false; PasswordManagerEnabled = false; - DisablePrivateBrowsing = true; DisableSetDesktopBackground = true; DisableTelemetry = true; DisableFirefoxScreenshots = true; @@ -42,8 +36,6 @@ SearchBar = "unified"; SearchSuggestEnabled = false; DownloadDirectory = "/home/lilith/sync/inbox"; - - SanitizeOnShutdown = true; Containers = { "Default" = [ diff --git a/home/hyprland/default.nix b/home/hyprland/default.nix index 6a6a889f..ab7982c9 100644 --- a/home/hyprland/default.nix +++ b/home/hyprland/default.nix @@ -17,7 +17,6 @@ settings = { "$terminal" = "alacritty"; - "$fileManager" = "alacritty -e ranger"; env = [ "HYPRCURSOR_THEME,rose-pine-hyprcursor" diff --git a/system/full.nix b/system/full.nix index 633bd9f5..e877fd2b 100644 --- a/system/full.nix +++ b/system/full.nix @@ -18,5 +18,6 @@ ./syncthing.nix ./wayland.nix ./zsh.nix + ./poe.nix ]; } diff --git a/system/poe.nix b/system/poe.nix new file mode 100644 index 00000000..d8544ad3 --- /dev/null +++ b/system/poe.nix @@ -0,0 +1,13 @@ +let + awakened-poe-trade = import (builtins.fetchGit { url = "https://github.com/hukasu/awakened-poe-trade-nix"; ref = "refs/tags/v0.0.3"; }); +in { + environment.systemPackages = [ + # This is the to add the application + awakened-poe-trade.app + # Add this to add a Desktop Item + # This requires the `app`, but the way it's setup right now, + # it does not install the `app` automatically + awakened-poe-trade.desktop + ]; +} +