bug(console): set correct font
This commit is contained in:
parent
f5503dfdb0
commit
7091f8756d
|
@ -12,9 +12,6 @@ in {
|
|||
enable = mkEnableOption "to enable the starship prompt.";
|
||||
};
|
||||
config = mkIf (cfg.enable) {
|
||||
fonts.packages = with pkgs; [
|
||||
nerdfonts # Iconic font aggregator, collection, & patcher
|
||||
];
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
presets = ["nerd-font-symbols"];
|
||||
|
|
|
@ -30,6 +30,9 @@ in {
|
|||
usbutils # Tools for working with USB devices, such as lsusb
|
||||
xorg.libxcb # X C binding
|
||||
];
|
||||
fonts.packages = with pkgs; [
|
||||
nerdfonts # Iconic font aggregator, collection, & patcher
|
||||
];
|
||||
networking = {
|
||||
networkmanager.enable = true; # Enables network support via NetworkManager.
|
||||
firewall.enable = true;
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
console = {
|
||||
keyMap = "us"; # Set the default console key map
|
||||
font = "ter-powerline-v32n"; # Set the default console font
|
||||
packages = with pkgs; [powerline-fonts];
|
||||
};
|
||||
|
||||
time.timeZone = "Australia/Brisbane"; # Set your preferred timezone:
|
||||
|
|
Loading…
Reference in a new issue