ooknet/home/modules/desktop/browser/default.nix
ooks-io f82e204bf9 feat(schizofox): initial schizofox config
has issues, requires further work
2024-03-01 23:44:16 +13:00

29 lines
686 B
Nix

{ lib, ... }:
{
imports = [
./firefox
./schizofox
#./chrome -- still needs to be implemented
#./brave -- still needs tio be implemented
];
options.homeModules.desktop.browser = {
firefox = {
enable = lib.mkEnableOption "Enable firefox browser";
default = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Set Firefox as default browser";
};
};
schizofox = {
enable = lib.mkEnableOption "Enable schizofox browser";
default = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Set schizofox as default browser";
};
};
};
}