Move the assets folder
|
@ -1,7 +1,8 @@
|
|||
{ config, lib, ... }: {
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
home.file = lib.mkIf config.home.desktop.enable {
|
||||
".assets/wallpapers".source = ./assets/wallpapers;
|
||||
".assets/lockscreen".source = ./assets/lockscreen;
|
||||
".assets/wallpapers".source = ./wallpapers;
|
||||
".assets/lockscreen".source = ./lockscreen;
|
||||
".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 = [
|
||||
./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
|
@ -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}";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|