Initial commit 🚀

This commit is contained in:
2023-10-13 15:56:14 +02:00
commit b593cdeb3e
50 changed files with 2454 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{ ... }:
{
imports = [
./gtk.nix
./qt.nix
];
}

View File

@@ -0,0 +1,37 @@
{
pkgs,
custom ? {
font = "RobotoMono Nerd Font";
fontsize = "12";
cursor = "Numix-Cursor";
},
...
}:
{
gtk = {
enable = true;
font.name = "${custom.font} ${custom.fontsize}";
iconTheme = {
name = "Papirus-Dark";
package = pkgs.catppuccin-papirus-folders;
};
cursorTheme = {
name = "${custom.cursor}";
package = pkgs.numix-cursor-theme;
};
theme = {
name = "Catppuccin-Mocha-Standard-Blue-Dark";
package = pkgs.catppuccin-gtk.override { variant="mocha"; };
};
gtk3.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme=1
'';
};
gtk4.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme=1
'';
};
};
}

View File

@@ -0,0 +1,8 @@
{ ... }:
{
qt = {
enable = true;
platformTheme = "gtk";
style.name = "gtk2";
};
}