feat(gtk): Configure GTK

This commit is contained in:
punkfairie 2024-11-03 12:57:27 -08:00
parent 54742343c6
commit 1e0a27fcd3
2 changed files with 14 additions and 0 deletions

View file

@ -45,6 +45,7 @@
fonts.fontconfig.defaultFonts.monospace = [ "Maple Mono NF" ];
imports = [
./gtk.nix
./programs
./services
./xdg.nix

13
home/gtk.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
gtk = {
enable = true;
rose-pine.enable = true;
iconTheme = {
package = pkgs.kora-icon-theme;
name = "kora";
};
};
}