style: remove default.nix, theming.nix

unused
This commit is contained in:
Bloxx12 2025-05-12 22:16:25 +02:00 committed by Bloxx12
commit 22052a7f07
2 changed files with 0 additions and 26 deletions

View file

@ -1,8 +0,0 @@
_: {
imports = [
./qt.nix
./gtk.nix
./module.nix
./fonts.nix
];
}

View file

@ -1,18 +0,0 @@
{
config,
lib,
pkgs,
...
}: let
inherit (lib.modules) mkMerge mkIf;
inherit (lib.options) mkEnableOption;
cfg = config.modules.theming;
in {
options.modules.theming = {
qt.enable = mkEnableOption "qt theming";
};
config =
mkMerge [
];
}