diff options
| author | spl3g <spleefer6@yandex.ru> | 2024-12-27 00:59:03 +0300 |
|---|---|---|
| committer | spl3g <spleefer6@yandex.ru> | 2025-05-01 14:58:57 +0300 |
| commit | 5879c979643470b960147827ee2de01592c60cda (patch) | |
| tree | 391794a64a80c397749cfb797ba250392e6bc83d | |
| parent | 333d8401b6af3e6212d8c3523a035d2b40343406 (diff) | |
fix: use update font name
| -rw-r--r-- | home-manager/homeModules/stylix.nix | 2 | ||||
| -rw-r--r-- | nixos/general.nix | 2 | ||||
| -rw-r--r-- | nixos/nixosModules/stylix.nix | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/home-manager/homeModules/stylix.nix b/home-manager/homeModules/stylix.nix index 9d53897..5b89224 100644 --- a/home-manager/homeModules/stylix.nix +++ b/home-manager/homeModules/stylix.nix @@ -63,7 +63,7 @@ }; monospace = { - package = pkgs.fira-code-nerdfont; + package = pkgs.nerd-fonts.fira-code; name = "FiraCode Nerd Font"; }; diff --git a/nixos/general.nix b/nixos/general.nix index e4355ca..4e78c00 100644 --- a/nixos/general.nix +++ b/nixos/general.nix @@ -104,7 +104,7 @@ rubik # code font - fira-code-nerdfont + nerd-fonts.fira-code ]; enableDefaultPackages = false; diff --git a/nixos/nixosModules/stylix.nix b/nixos/nixosModules/stylix.nix index 1c69cb8..5969c4d 100644 --- a/nixos/nixosModules/stylix.nix +++ b/nixos/nixosModules/stylix.nix @@ -1,4 +1,4 @@ -{ pkgs, config, lib, inputs, outputs, ... }: +{ config, lib, inputs, outputs, ... }: { imports = [ |
