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