Minimize pkgs use, add stable channel for unstable systems, more separation and such

This commit is contained in:
Bun 2025-03-27 08:53:35 -04:00
parent e2c86171a5
commit 9190e09c93
23 changed files with 112 additions and 93 deletions

View file

@ -1,13 +1,13 @@
{ config, pkgs, ... }:
{
gtk = {
gtk = with pkgs; {
font = {
name = "${config.look.fonts.main}";
name = config.look.fonts.main;
size = 11;
};
theme = {
name = "Colloid-Dark";
package = pkgs.colloid-gtk-theme.override {
package = colloid-gtk-theme.override {
themeVariants = [ "default" ];
colorVariants = [ "dark" ];
sizeVariants = [ "standard" ];
@ -20,8 +20,8 @@
};
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme.override {
color = "${config.look.colors.folder}";
package = papirus-icon-theme.override {
color = config.look.colors.folder;
};
};
};