nix fmt
All checks were successful
/ check (push) Successful in 1m39s

This commit is contained in:
Oliver Davies 2025-07-10 22:55:59 +01:00
parent b32493780d
commit 6a87e455bd
16 changed files with 105 additions and 46 deletions

View file

@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
with lib;
@ -6,8 +11,7 @@ let
cfg = config.features.desktop.browsers.qutebrowser;
in
{
options.features.desktop.browsers.qutebrowser.enable =
mkEnableOption "Enable qutebrowser";
options.features.desktop.browsers.qutebrowser.enable = mkEnableOption "Enable qutebrowser";
config = mkIf cfg.enable {
programs.qutebrowser = {

View file

@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
with lib;