fonts: migrated to new option names

This commit is contained in:
Fiscal Velvet Poet 2023-12-04 17:48:30 +10:00
parent 62bf0c9262
commit ed41aa92c2
Signed by: fiscalvelvetpoet
GPG key ID: D8EBFD58B023BD47

View file

@ -38,12 +38,14 @@
security.sudo.wheelNeedsPassword = false;
# Configure and install required fonts
fonts.enableDefaultFonts = true;
fonts.fontDir.enable = true;
fonts.fonts = with pkgs; [
powerline-fonts # Required for Powerline prompts
];
fonts.fontconfig.includeUserConf = false;
fonts = {
enableDefaultPackages = true;
fontDir.enable = true;
packages = with pkgs; [
powerline-fonts # Required for Powerline prompts
];
fontconfig.includeUserConf = false;
};
# Adapted from gchristensen and clever
nix = {