Still GTK

This commit is contained in:
2026-03-16 17:32:04 +00:00
parent 2e19a1d254
commit 7aeb3b9182
3 changed files with 14 additions and 15 deletions
+2 -2
View File
@@ -820,9 +820,9 @@ This is top file of this level which contains just an import statement for all r
];
#+END_SRC
** =generated/system/applications/browsing/top.nix=
** =generated/system/applications/browsing/zen-browser.nix=
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/applications/browsing/top.nix :noweb tangle :mkdirp yes :eval never-html
#+BEGIN_SRC nix :tangle generated/system/applications/browsing/zen-browser.nix :noweb tangle :mkdirp yes :eval never-html
{ pkgs, ... }:
{
programs.zen-browser = {
@@ -5,16 +5,3 @@
# ./firefox.nix
# ./vivaldi.nix
];
{ pkgs, ... }:
{
programs.zen-browser = {
enable = true;
profile = {
settings = {
"widget.non-native-theme.enabled" = false;
"widget.dmab.hidpi.enabled" = true;
};
};
};
}
@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
programs.zen-browser = {
enable = true;
profile = {
settings = {
"widget.non-native-theme.enabled" = false;
"widget.dmab.hidpi.enabled" = true;
};
};
};
}