summaryrefslogtreecommitdiff
path: root/features/user/gui/apps/librewolf.nix
diff options
context:
space:
mode:
Diffstat (limited to 'features/user/gui/apps/librewolf.nix')
-rw-r--r--features/user/gui/apps/librewolf.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/features/user/gui/apps/librewolf.nix b/features/user/gui/apps/librewolf.nix
deleted file mode 100644
index fc6c2c4..0000000
--- a/features/user/gui/apps/librewolf.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- config,
- pkgs,
- lib,
- ...
-}: let
- cfg = config.features.gui.apps.librewolf;
-in {
- options.features.gui.apps.librewolf.enable = lib.mkEnableOption "librewolf";
- config = lib.mkIf cfg.enable {
- # programs.librewolf = {
- # enable = true;
- # settings = {
- # "browser.tabs.inTitlebar" = 0;
- # };
- # };
- home.packages = [ pkgs.librewolf-bin ];
- };
-}