feat(schizofox): initial schizofox config

has issues, requires further work
This commit is contained in:
ooks-io 2024-03-01 23:44:16 +13:00
parent 187d4d4034
commit f82e204bf9
4 changed files with 85 additions and 2 deletions

View file

@ -3,6 +3,7 @@
imports = [
./firefox
./schizofox
#./chrome -- still needs to be implemented
#./brave -- still needs tio be implemented
];
@ -16,5 +17,13 @@
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";
};
};
};
}