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

@ -1,7 +1,8 @@
{ config, lib, ... }: { { config, lib, ... }:
{
home.file = lib.mkIf config.home.desktop.enable { home.file = lib.mkIf config.home.desktop.enable {
".assets/wallpapers".source = ./assets/wallpapers; ".assets/wallpapers".source = ./wallpapers;
".assets/lockscreen".source = ./assets/lockscreen; ".assets/lockscreen".source = ./lockscreen;
".alsoftrc".text = "drivers=pulse"; ".alsoftrc".text = "drivers=pulse";
}; };
} }

View file

Before

Width:  |  Height:  |  Size: 314 KiB

After

Width:  |  Height:  |  Size: 314 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2 MiB

After

Width:  |  Height:  |  Size: 2 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.3 MiB

After

Width:  |  Height:  |  Size: 2.3 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.9 MiB

After

Width:  |  Height:  |  Size: 1.9 MiB

Before After
Before After

View file

@ -3,32 +3,8 @@
imports = [ imports = [
./bookmarks ./bookmarks
./css ./css
./theme
]; ];
gtk = { gtk.enable = config.home.desktop.enable;
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}";
};
};
};
} }

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}";
};
};
};
}