minor fix

This commit is contained in:
Vivian 2022-11-29 13:10:17 +01:00
parent 669b18acd2
commit 2dd3d2f5ab

View file

@ -100,31 +100,29 @@
virtualisation.podman.enable = true; virtualisation.podman.enable = true;
fonts = { fonts.fonts = with pkgs; [
fonts = with pkgs; [ material-design-icons
material-design-icons noto-fonts
noto-fonts noto-fonts-cjk
noto-fonts-cjk noto-fonts-emoji
noto-fonts-emoji dejavu_fonts
dejavu_fonts (nerdfonts.override {
(nerdfonts.override { fonts =
fonts = [ "DejaVuSansMono" "Ubuntu" "DroidSansMono" "NerdFontsSymbolsOnly" ];
[ "DejaVuSansMono" "Ubuntu" "DroidSansMono" "NerdFontsSymbolsOnly" ]; })
}) ];
];
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# networking.firewall.enable = false; # networking.firewall.enable = false;
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave # on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system. # this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option # Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.05"; # Did you read the comment? system.stateVersion = "23.05"; # Did you read the comment?
};
} }