Adding nerdfonts

This commit is contained in:
2026-03-15 19:29:24 +00:00
parent db020bc1cd
commit a644259341
+7 -3
View File
@@ -23,7 +23,7 @@
hyprland.url = "github:hyprwm/Hyprland"; hyprland.url = "github:hyprwm/Hyprland";
}; };
outputs = outputs =
inputs@{ inputs@{
self, self,
nixpkgs, nixpkgs,
@@ -50,11 +50,14 @@ outputs =
lib.nixosSystem { lib.nixosSystem {
inherit system; inherit system;
modules = [ modules = [
(
{ config, pkgs, ... }:
{
nixpkgs.overlays = [ nixpkgs.overlays = [
inputs.nerdfonts.overlays.default inputs.nerdfonts.overlays.default
]; ];
}
)
# Import machine-specific configurations # Import machine-specific configurations
./assets/flake/machines/traveldroid/top.nix ./assets/flake/machines/traveldroid/top.nix
@@ -73,6 +76,7 @@ outputs =
home-manager.extraSpecialArgs = { inherit user inputs flakeRoot; }; home-manager.extraSpecialArgs = { inherit user inputs flakeRoot; };
} }
]; ];
specialArgs = { inherit user inputs flakeRoot; }; specialArgs = { inherit user inputs flakeRoot; };
} }
); );