Move the assets folder
|
@ -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";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Before Width: | Height: | Size: 314 KiB After Width: | Height: | Size: 314 KiB |
Before Width: | Height: | Size: 2 MiB After Width: | Height: | Size: 2 MiB |
Before Width: | Height: | Size: 2.3 MiB After Width: | Height: | Size: 2.3 MiB |
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
|
@ -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}";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
28
modules/home/settings/gtk/theme/default.nix
Normal 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}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|