nichts/modules/style/module.nix

25 lines
572 B
Nix
Raw Normal View History

2024-08-15 23:13:09 +02:00
{config, ...}: let
inherit (config.modules.style.cursor) package name size;
inherit (config.modules.other.system) username;
in {
2024-09-08 20:49:30 +02:00
imports = [
./qt.nix
# ./gtk.nix
2024-09-08 20:49:30 +02:00
./colors.nix
./fonts.nix
];
# home-manager.users.${username} = {
# home.pointerCursor = {
# # inherit the default values set in the options,
# # since these are the once I need on all my systems.
# inherit package name size;
2024-08-15 23:13:09 +02:00
# # make gtk follow the cursor choices
# # gtk.enable = true;
2024-08-15 23:13:09 +02:00
# # ditto
# x11.enable = true;
# };
# };
2024-08-15 23:13:09 +02:00
}