Move the assets folder

This commit is contained in:
Bun 2025-03-21 22:29:32 -04:00
parent 7f1e116e2d
commit c8c7be8a24
7 changed files with 34 additions and 29 deletions

View file

@ -3,32 +3,8 @@
imports = [
./bookmarks
./css
./theme
];
gtk = {
enable = config.home.desktop.enable;
font = {
name = "${config.look.fonts.main}";
size = 11;
};
theme = {
name = "Colloid-Dark";
package = pkgs.colloid-gtk-theme.override {
themeVariants = [ "default" ];
colorVariants = [ "dark" ];
sizeVariants = [ "standard" ];
tweaks = [
"black"
"rimless"
"normal"
];
};
};
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme.override {
color = "${config.look.colors.folder}";
};
};
};
gtk.enable = config.home.desktop.enable;
}

View file

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