before npins

This commit is contained in:
atagen 2025-04-06 23:50:50 +10:00
parent d429476553
commit 63fbd6d499
22 changed files with 627 additions and 330 deletions

View file

@ -1,7 +1,7 @@
{ pkgs, ... }:
{ pkgs, rice, ... }:
{
home.packages = with pkgs; [
gtk-engine-murrine
home.packages = [
pkgs.gtk-engine-murrine
];
fonts.fontconfig.enable = true;
@ -11,19 +11,16 @@
platformTheme.name = "adwaita";
};
gtk =
with pkgs;
with rice;
{
enable = true;
theme = with gtk-theme; {
inherit package name;
};
iconTheme = with icons; {
inherit package name;
};
font = with fonts.sans; {
inherit name size package;
};
gtk = {
enable = true;
theme = {
inherit (rice.gtk-theme) package name;
};
iconTheme = {
inherit (rice.icons) package name;
};
font = {
inherit (rice.fonts.sans) size package name;
};
};
}