From 3907dc3bf729169d3afb2be160655210208cbb30 Mon Sep 17 00:00:00 2001 From: Noah Date: Tue, 24 Dec 2024 16:14:23 +0100 Subject: [PATCH 1/2] fix: nerdfont in different namespace --- nix/module.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nix/module.nix b/nix/module.nix index 7524260de..61dbcc829 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -218,7 +218,10 @@ in config = mkIf cfg.enable { # TODO:(benvonh) Nerd font packaging changes in NixOS 25.05 - home.packages = [ package (pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) ]; + home.packages = [ + package + (pkgs.nerd-fonts.jetbrains-mono.override { fonts = [ "JetBrainsMono" ]; }) + ]; # NOTE:(benvonh) # When changing the configuration through the GUI, HyprPanel will delete the `config.json` file and create a new From c92c6b26330861f8b498da2b480c250434706f09 Mon Sep 17 00:00:00 2001 From: Noah Date: Tue, 24 Dec 2024 17:57:40 +0100 Subject: [PATCH 2/2] Update nix/module.nix Co-authored-by: orangc --- nix/module.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nix/module.nix b/nix/module.nix index 61dbcc829..85dce0360 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -218,10 +218,7 @@ in config = mkIf cfg.enable { # TODO:(benvonh) Nerd font packaging changes in NixOS 25.05 - home.packages = [ - package - (pkgs.nerd-fonts.jetbrains-mono.override { fonts = [ "JetBrainsMono" ]; }) - ]; + home.packages = [pkgs.nerd-fonts.jetbrains-mono]; # NOTE:(benvonh) # When changing the configuration through the GUI, HyprPanel will delete the `config.json` file and create a new