Compare commits

...

2 Commits

Author SHA1 Message Date
henrov b4cdbde842 Working on reshuffling 2026-03-19 12:42:12 +00:00
henrov 745fc7e9aa deleted generated files 2026-03-19 12:42:11 +00:00
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -982,13 +982,13 @@ Setting up GTK
** =generated/modules/desktop/fonts.nix=
This file installs and configures fonts
#+BEGIN_SRC nix :tangle generated/modules/desktop/fonts.nix :noweb tangle :mkdirp yes :eval never-html
{ lib, pkgs, ... }:
{ lib, pkgs, config, ... }:
{
# Top-level toggle
options.enableFonts = lib.mkEnableOption "Enable nerd fonts";
# Config alleen toepassen als enabled
# Config is only applied when the module is evaluated
config = lib.mkIf (config.enableFonts or false) {
fonts.packages = with pkgs; [
nerd-fonts.iosevka
+2 -2
View File
@@ -1,10 +1,10 @@
{ lib, pkgs, ... }:
{ lib, pkgs, config, ... }:
{
# Top-level toggle
options.enableFonts = lib.mkEnableOption "Enable nerd fonts";
# Config alleen toepassen als enabled
# Config is only applied when the module is evaluated
config = lib.mkIf (config.enableFonts or false) {
fonts.packages = with pkgs; [
nerd-fonts.iosevka