Home Gen139 @ 2024-04-28-17:50

This commit is contained in:
Jonas Röger 2024-04-28 18:12:26 +02:00
parent 1961a55089
commit 9616c1bc78
4 changed files with 30 additions and 0 deletions

View File

@ -10,6 +10,7 @@
./hyprland
./kitty
./ssh.nix
./themes/gtk
./themes/qt
./waybar
./yubikey.nix

View File

@ -0,0 +1,20 @@
{
config,
pkgs,
...
}: {
gtk = {
cursorTheme = {
package = pkgs.nordzy-cursor-theme;
name = "Nordzy-cursors";
};
theme = {
package = pkgs.nordic;
name = "Nordic";
};
iconTheme = {
package = pkgs.tela-circle-icon-theme;
name = "Tela-circle-nord";
};
};
}

View File

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

View File

@ -0,0 +1,3 @@
{config, ...}: {
gtk.enable = true;
}