Working on reshuffling

This commit is contained in:
2026-03-19 06:50:13 +00:00
parent 85b7209c08
commit 12557c5a30
2 changed files with 44 additions and 8 deletions
+22 -4
View File
@@ -1,6 +1,24 @@
{ config, pkgs, ... }:
{ lib, ... }:
{
fonts.packages = with pkgs; [
pkgs.nerd-fonts.iosevka
];
flake.nixosModules.fonts =
{
config,
pkgs,
lib,
...
}:
{
options.mySystem.desktop.fonts.enable = lib.mkEnableOption "Enable system fonts";
config = lib.mkIf (config.mySystem.desktop.fonts.enable or false) {
fonts.packages = with pkgs; [
nerd-fonts.iosevka
nerd-fonts.fira-code
];
};
};
}