what did i do here again
This commit is contained in:
parent
0ecfd4b2c3
commit
fef4a98fa8
|
@ -1,16 +1,20 @@
|
||||||
{ options, config, lib, pkgs, ...}:
|
|
||||||
with lib;
|
|
||||||
let
|
|
||||||
cfg = config.modules.desktop.browsers.firefox;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
|
options,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.modules.desktop.browsers.firefox;
|
||||||
|
in {
|
||||||
options.modules.desktop.browsers.firefox = {
|
options.modules.desktop.browsers.firefox = {
|
||||||
enable = mkEnableOption false;
|
enable = mkEnableOption false;
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO add this
|
# TODO add this
|
||||||
# https://github.com/Dook97/firefox-qutebrowser-userchrome
|
# https://github.com/Dook97/firefox-qutebrowser-userchrome
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
programs.firefox = {
|
programs.firefox = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue