diff --git a/apps/firefox/home.nix b/apps/firefox/home.nix index 482f820..1341de9 100644 --- a/apps/firefox/home.nix +++ b/apps/firefox/home.nix @@ -6,53 +6,8 @@ }: { imports = [ inputs.textfox.homeManagerModules.default + ./textfox.nix ]; - textfox = { - enable = true; - profile = "hakase"; - config = { - # background = { - # color = "#123456"; - # }; - # border = { - # color = "#654321"; - # width = "4px"; - # transition = "1.0s ease"; - # radius = "3px"; - # }; - # displayWindowControls = true; - # displayNavButtons = true; - # displayUrlbarIcons = true; - # displaySidebarTools = false; - displayTitles = true; - # newtabLogo = " __ __ ____ \A / /____ _ __/ /_/ __/___ _ __\A / __/ _ \\| |/_/ __/ /_/ __ \\| |/_/\A / /_/ __/> < \A \\__/\\___/_/|_|\\__/_/ \\____/_/|_| "; - # font = { - # family = "Fira Code"; - # size = "15px"; - # accent = "#654321"; - # }; - tabs = { - horizontal.enable = false; - # horizontal.enable = true; - # vertical.enable = true; - # vertical.margin = "1.0rem"; - }; - # navbar = { - # margin = "8px 8px 2px"; - # padding = "4px"; - # }; - bookmarks = { - alignment = "left"; - }; - # icons = { - # toolbar.extensions.enable = true; - # context.extensions.enable = true; - # context.firefox.enable = true; - # }; - # textTransform = "uppercase"; - # extraConfig = "/* custom css here */"; - }; - }; programs.firefox = { enable = true; diff --git a/apps/firefox/textfox.nix b/apps/firefox/textfox.nix new file mode 100644 index 0000000..91ea6a0 --- /dev/null +++ b/apps/firefox/textfox.nix @@ -0,0 +1,48 @@ +{ + textfox = { + enable = true; + profile = "hakase"; + config = { + # background = { + # color = "#123456"; + # }; + # border = { + # color = "#654321"; + # width = "4px"; + # transition = "1.0s ease"; + # radius = "3px"; + # }; + # displayWindowControls = true; + # displayNavButtons = true; + # displayUrlbarIcons = true; + # displaySidebarTools = false; + displayTitles = true; + # newtabLogo = " __ __ ____ \A / /____ _ __/ /_/ __/___ _ __\A / __/ _ \\| |/_/ __/ /_/ __ \\| |/_/\A / /_/ __/> < \A \\__/\\___/_/|_|\\__/_/ \\____/_/|_| "; + # font = { + # family = "Fira Code"; + # size = "15px"; + # accent = "#654321"; + # }; + tabs = { + horizontal.enable = false; + # horizontal.enable = true; + # vertical.enable = true; + # vertical.margin = "1.0rem"; + }; + # navbar = { + # margin = "8px 8px 2px"; + # padding = "4px"; + # }; + bookmarks = { + alignment = "left"; + }; + # icons = { + # toolbar.extensions.enable = true; + # context.extensions.enable = true; + # context.firefox.enable = true; + # }; + # textTransform = "uppercase"; + # extraConfig = "/* custom css here */"; + }; + }; +}