mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
librewolf: hide bookmarks option
This commit is contained in:
parent
a0ba4158d9
commit
510b840975
2 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
{ modulePath, name, description ? null, wrappedPackageName ? null
|
||||
, unwrappedPackageName ? null, platforms, visible ? false }:
|
||||
, unwrappedPackageName ? null, platforms, visible ? false
|
||||
, enableBookmarks ? true }:
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
|
@ -426,6 +427,7 @@ in {
|
|||
};
|
||||
|
||||
bookmarks = mkOption {
|
||||
internal = !enableBookmarks;
|
||||
type = let
|
||||
bookmarkSubmodule = types.submodule ({ config, name, ... }: {
|
||||
options = {
|
||||
|
|
|
@ -37,6 +37,8 @@ in {
|
|||
vendorPath = "Library/Application Support/LibreWolf";
|
||||
configPath = "Library/Application Support/LibreWolf";
|
||||
};
|
||||
|
||||
enableBookmarks = false;
|
||||
})
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue