re-organize home-modules

This commit is contained in:
2024-10-19 14:35:08 +02:00
parent f1d7b850fa
commit b95ebd8efc
52 changed files with 36 additions and 30 deletions

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;
}

View File

@@ -0,0 +1,7 @@
{
config,
pkgs,
...
}: {
qt.style.name = "kvantum";
}

View File

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

View File

@@ -0,0 +1,11 @@
{
config,
pkgs,
...
}: {
qt.enable = true;
home.packages = [
pkgs.utterly-nord-plasma
pkgs.libsForQt5.qtstyleplugin-kvantum
];
}