Move the assets folder
This commit is contained in:
parent
7f1e116e2d
commit
c8c7be8a24
7 changed files with 34 additions and 29 deletions
|
@ -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;
|
||||
}
|
||||
|
|
28
modules/home/settings/gtk/theme/default.nix
Normal file
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}";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue