working on eww

This commit is contained in:
2026-03-11 16:53:15 +01:00
parent 5850bb8518
commit ca5588d248
6 changed files with 377 additions and 365 deletions
+11
View File
@@ -830,6 +830,17 @@ This is top file of this level which contains just an import statement for all r
}
#+END_SRC
** =generated/system/core/fonts.nix=
This file installs and configures eww
#+BEGIN_SRC nix :tangle generated/system/core/fonts.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(nerdfonts.override { fonts = [ "FiraCode" ]; })
];
}
#+END_SRC
** =generated/system/core/eww.nix=
This file installs and configures eww
#+BEGIN_SRC nix :tangle generated/system/core/eww.nix :noweb tangle :mkdirp yes :eval never-html