mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 10:30:14 +01:00
fix missing icons in gnome console
This commit is contained in:
parent
1508d9a6ac
commit
6a28114eb3
|
@ -118,5 +118,19 @@ in {
|
||||||
nixpkgs.config.permittedInsecurePackages = [
|
nixpkgs.config.permittedInsecurePackages = [
|
||||||
"electron-12.2.3"
|
"electron-12.2.3"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
fonts = {
|
||||||
|
fonts = with pkgs; [
|
||||||
|
(nerdfonts.override {fonts = ["FiraCode"];})
|
||||||
|
];
|
||||||
|
|
||||||
|
fontconfig = {
|
||||||
|
defaultFonts = {
|
||||||
|
serif = [];
|
||||||
|
sansSerif = [];
|
||||||
|
monospace = ["FiraCode Nerd Font"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,8 +35,6 @@ in {
|
||||||
## Apps
|
## Apps
|
||||||
steam
|
steam
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
powerline
|
|
||||||
powerline-fonts
|
|
||||||
lutris
|
lutris
|
||||||
kdiff3
|
kdiff3
|
||||||
wineWowPackages.stagingFull
|
wineWowPackages.stagingFull
|
||||||
|
|
|
@ -43,8 +43,6 @@ in {
|
||||||
radeontop
|
radeontop
|
||||||
lsof
|
lsof
|
||||||
wirelesstools
|
wirelesstools
|
||||||
powerline
|
|
||||||
powerline-fonts
|
|
||||||
thefuck
|
thefuck
|
||||||
dotnet-sdk_7
|
dotnet-sdk_7
|
||||||
jetbrains.rider
|
jetbrains.rider
|
||||||
|
@ -188,13 +186,6 @@ in {
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
bottom = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
# https://github.com/ClementTsang/bottom/blob/master/sample_configs/default_config.toml
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
exa = {
|
exa = {
|
||||||
enable = true;
|
enable = true;
|
||||||
git = true;
|
git = true;
|
||||||
|
|
Loading…
Reference in a new issue