mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2025-12-22 23:11:57 +00:00
Switched package lists from with syntax to explicit
Appranently, the use of `with` for this is discouraged as it can cause some kinds of compilation/linking issues. Switching to explicit declaration is a bit more verbose, but probably makes organising into modules easier in the long run anyway.
This commit is contained in:
@@ -24,27 +24,27 @@
|
||||
};
|
||||
};
|
||||
|
||||
packages = with pkgs; [
|
||||
corefonts
|
||||
liberation_ttf
|
||||
nerdfonts
|
||||
nerd-font-patcher
|
||||
noto-fonts
|
||||
noto-fonts-color-emoji
|
||||
vistafonts
|
||||
winePackages.fonts
|
||||
packages = [
|
||||
pkgs.corefonts
|
||||
pkgs.liberation_ttf
|
||||
pkgs.nerdfonts
|
||||
pkgs.nerd-font-patcher
|
||||
pkgs.noto-fonts
|
||||
pkgs.noto-fonts-color-emoji
|
||||
pkgs.vistafonts
|
||||
pkgs.winePackages.fonts
|
||||
];
|
||||
};
|
||||
|
||||
# Theming packages
|
||||
environment.systemPackages = with pkgs; [
|
||||
environment.systemPackages = [
|
||||
# Cursor
|
||||
hyprcursor
|
||||
pkgs.hyprcursor
|
||||
# QT
|
||||
libsForQt5.qtstyleplugin-kvantum
|
||||
qt6Packages.qtstyleplugin-kvantum
|
||||
pkgs.libsForQt5.qtstyleplugin-kvantum
|
||||
pkgs.qt6Packages.qtstyleplugin-kvantum
|
||||
# Adwaita (i love gnome, but god damn is adwaita annoying on other DEs)
|
||||
adwaita-icon-theme
|
||||
libadwaita
|
||||
pkgs.adwaita-icon-theme
|
||||
pkgs.libadwaita
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user