14 lines
253 B
Nix
14 lines
253 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
./cursor.nix
|
|
./fonts.nix
|
|
./gtk.nix
|
|
./qt.nix
|
|
];
|
|
|
|
# settings to be expanded on in the future
|
|
options.homeModules.desktop.themeSettings = {
|
|
enable = lib.mkEnableOption "Enable theme settings";
|
|
};
|
|
}
|