Merge branch 'main' of github.com:jroeger23/.hive

This commit is contained in:
2025-08-21 17:14:38 +02:00
29 changed files with 532 additions and 82 deletions

View File

@@ -0,0 +1,5 @@
{...}: {
imports = [
./layan.nix
];
}

View File

@@ -0,0 +1,21 @@
{
lib,
config,
pkgs,
...
}: let
cfg = config.hive.themes.layan;
in {
options.hive.themes.layan = {
enable = lib.mkEnableOption "Layan theme configuration";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [
pkgs.hive.layan-qt6
pkgs.kdePackages.qtstyleplugin-kvantum
pkgs.unstable.layan-cursors
pkgs.layan-gtk-theme
pkgs.tela-circle-icon-theme
];
};
}