fix(hm/theming): move theming packages to the theming module
This commit is contained in:
parent
df4c7d20ad
commit
720d1d6129
|
@ -80,19 +80,6 @@
|
||||||
# Mail client
|
# Mail client
|
||||||
thunderbird
|
thunderbird
|
||||||
|
|
||||||
## Theming
|
|
||||||
(nerdfonts.override {
|
|
||||||
fonts = [
|
|
||||||
"IBMPlexMono"
|
|
||||||
"NerdFontsSymbolsOnly"
|
|
||||||
];
|
|
||||||
})
|
|
||||||
ibm-plex
|
|
||||||
libsForQt5.qtstyleplugin-kvantum
|
|
||||||
libsForQt5.qtwayland
|
|
||||||
qt6Packages.qtstyleplugin-kvantum
|
|
||||||
qt6Packages.qtwayland
|
|
||||||
|
|
||||||
# Create an FHS environment using the command `fhs`, enabling the execution of non-NixOS packages in NixOS!
|
# Create an FHS environment using the command `fhs`, enabling the execution of non-NixOS packages in NixOS!
|
||||||
(
|
(
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,6 +1,20 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
(nerdfonts.override {
|
||||||
|
fonts = [
|
||||||
|
"IBMPlexMono"
|
||||||
|
"NerdFontsSymbolsOnly"
|
||||||
|
];
|
||||||
|
})
|
||||||
|
ibm-plex
|
||||||
|
libsForQt5.qtstyleplugin-kvantum
|
||||||
|
libsForQt5.qtwayland
|
||||||
|
qt6Packages.qtstyleplugin-kvantum
|
||||||
|
qt6Packages.qtwayland
|
||||||
|
];
|
||||||
|
|
||||||
home.file = {
|
home.file = {
|
||||||
# Cattpuccin theme for fish shell.
|
# Cattpuccin theme for fish shell.
|
||||||
".config/fish/themes/Catppuccin-Frappe.theme".source = ./theming/Catppuccin-Frappe.theme;
|
".config/fish/themes/Catppuccin-Frappe.theme".source = ./theming/Catppuccin-Frappe.theme;
|
||||||
|
|
Loading…
Reference in a new issue