nichts/modules/style/module.nix

19 lines
496 B
Nix

{config, ...}: let
inherit (config.modules.style.cursor) package name size;
inherit (config.modules.other.system) username;
in {
home-manager.users.${username} = {
imports = [./default.nix];
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;
# make gtk follow the cursor choices
gtk.enable = true;
# ditto
x11.enable = true;
};
};
}