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
+356 -338
View File
File diff suppressed because it is too large Load Diff
+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 #+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= ** =generated/system/core/eww.nix=
This file installs and configures eww This file installs and configures eww
#+BEGIN_SRC nix :tangle generated/system/core/eww.nix :noweb tangle :mkdirp yes :eval never-html #+BEGIN_SRC nix :tangle generated/system/core/eww.nix :noweb tangle :mkdirp yes :eval never-html
@@ -30,7 +30,7 @@
* { * {
all: unset; all: unset;
font-family: "JetBrainsMono Nerd Font", monospace; font-family: "FiraCode Nerd Font", monospace;
font-size: 12px; font-size: 12px;
color: var(--text); color: var(--text);
} }
@@ -10,3 +10,6 @@ map ctrl+shift+c copy_to_clipboard
background_opacity 0.2 background_opacity 0.2
background_blur 1 background_blur 1
dynamic_background_opacity yes dynamic_background_opacity yes
font_family FiraCode Nerd Font
font_size 10.0
@@ -1,26 +0,0 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"agent": {
"default_model": {
"provider": "ollama",
"model": "codellama:34b",
"enable_thinking": false
},
"favorite_models": [],
"model_parameters": []
},
"ui_font_size": 16,
"buffer_font_size": 15,
"theme": {
"mode": "system",
"light": "One Light",
"dark": "One Dark",
},
}
+6
View File
@@ -0,0 +1,6 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(nerdfonts.override { fonts = [ "FiraCode" ]; })
];
}