1
0
Fork 0

Initial configuration

This commit is contained in:
Avery 2024-03-18 23:39:38 +01:00
commit 294fd9dcf3
Signed by: Avery
GPG key ID: B684FD451B692E04
35 changed files with 5369 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ pkgs, ... }: {
gtk = {
enable = true;
iconTheme = {
package = pkgs.kora-icon-theme;
name = "kora";
};
font = {
package = pkgs.inter;
name = "Inter";
size = 10;
};
theme = {
name = "Catppuccin-Mocha-Compact-Mauve-Dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "mauve" ];
size = "compact";
variant = "mocha";
};
};
};
}