diff --git a/home/librewolf.nix b/home/librewolf.nix new file mode 100644 index 0000000..567e142 --- /dev/null +++ b/home/librewolf.nix @@ -0,0 +1,20 @@ +{ + programs.librewolf = { + enable = true; + + settings = { + "middlemouse.paste" = false; + + "ui.use_activity_cursor" = true; + + "privacy.resistFingerprinting.letterboxing" = true; + + "browser.download.useDownloadDir" = true; + "browser.tabs.insertAfterCurrent" = true; + "browser.toolbars.bookmarks.visibility" = "never"; + + "sidebar.position_start" = false; + "findbar.highlightAll" = true; + }; + }; +} diff --git a/modules/librewolf.nix b/modules/librewolf.nix deleted file mode 100644 index be93621..0000000 --- a/modules/librewolf.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ - home-manager.sharedModules = [ - { - programs.librewolf = { - enable = true; - - settings = { - "middlemouse.paste" = false; - - "ui.use_activity_cursor" = true; - - "privacy.resistFingerprinting.letterboxing" = true; - - "browser.download.useDownloadDir" = true; - "browser.tabs.insertAfterCurrent" = true; - "browser.toolbars.bookmarks.visibility" = "never"; - - "sidebar.position_start" = false; - "findbar.highlightAll" = true; - }; - }; - } - ]; -}