diff options
author | Frankie B <git@diskfloppy.me> | 2023-09-02 20:05:43 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-09-02 20:23:09 +0100 |
commit | 5d278ec26aee8347bd0be9e528dd85e1b3b432d0 (patch) | |
tree | 36f47c7bfb4070ffa1aff4955e9008cdeb0bee6b | |
parent | a944f4ab5238a8985bd800bc98a015ec864a7dc4 (diff) |
Add MS fonts to hosts
-rw-r--r-- | hosts/nixbox/configuration.nix | 5 | ||||
-rw-r--r-- | hosts/nixpad/configuration.nix | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/hosts/nixbox/configuration.nix b/hosts/nixbox/configuration.nix index af97686..f1790d8 100644 --- a/hosts/nixbox/configuration.nix +++ b/hosts/nixbox/configuration.nix @@ -128,6 +128,11 @@ "openssl-1.1.1u" ]; + # Fonts + fonts.packages = with pkgs; [ + winePackages.fonts + ]; + # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ diff --git a/hosts/nixpad/configuration.nix b/hosts/nixpad/configuration.nix index 53d8273..4b86ea4 100644 --- a/hosts/nixpad/configuration.nix +++ b/hosts/nixpad/configuration.nix @@ -110,6 +110,11 @@ # Allow unfree packages nixpkgs.config.allowUnfree = true; + # Fonts + fonts.packages = with pkgs; [ + winePackages.fonts + ]; + # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ |