fix(home): Remove floorp option as it doesn't exist yet
This commit is contained in:
parent
62784d39b7
commit
15155a8b0f
1 changed files with 13 additions and 5 deletions
|
@ -9,11 +9,12 @@ in {
|
|||
options.marleyos.programs.floorp.enable = lib.mkEnableOption "floorp";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
stylix.targets.floorp = {
|
||||
enable = true;
|
||||
colorTheme.enable = true;
|
||||
profileNames = [config.marleyos.my.name];
|
||||
};
|
||||
# FIXME: switch to this once it's available
|
||||
# stylix.targets.floorp = {
|
||||
# enable = true;
|
||||
# colorTheme.enable = true;
|
||||
# profileNames = [config.marleyos.my.name];
|
||||
# };
|
||||
|
||||
programs.floorp = {
|
||||
enable = true;
|
||||
|
@ -313,6 +314,13 @@ in {
|
|||
|
||||
# 2 = auto; 1 = light; 0 = dark
|
||||
"layout.css.prefers-color-scheme.content-override" = 0;
|
||||
|
||||
# FIXME: Switch to stylix module once it's available for Floorp.
|
||||
"font.name.monospace.x-western" =
|
||||
config.stylix.fonts.monospace.name;
|
||||
"font.name.sans-serif-x-western" =
|
||||
config.stylix.fonts.sansSerif.name;
|
||||
"font.name.serif.x-western" = config.stylix.fonts.serif.name;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue