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 /hosts/nixpad | |
parent | a944f4ab5238a8985bd800bc98a015ec864a7dc4 (diff) |
Add MS fonts to hosts
Diffstat (limited to 'hosts/nixpad')
-rw-r--r-- | hosts/nixpad/configuration.nix | 5 |
1 files changed, 5 insertions, 0 deletions
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; [ |