renamed systemTheme module to be consistent with naming structure

This commit is contained in:
2026-07-07 16:57:37 +01:00
parent c8a12d7988
commit b615ba2ff1
3 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{
self,
inputs,
...
}: {
flake.nixosModules.systemTheme = {
config,
pkgs,
lib,
...
}: let
modules = with self.nixosModules; [
bibataCursors
catppuccinGtk
];
in {
imports = modules;
};
}