moving away from stylix
This commit is contained in:
parent
e0cea96fca
commit
8f63946c67
18 changed files with 35 additions and 13 deletions
18
modules/style/module.nix
Normal file
18
modules/style/module.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{config, ...}: let
|
||||
inherit (config.modules.style.cursor) package name size;
|
||||
inherit (config.modules.other.system) username;
|
||||
in {
|
||||
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;
|
||||
|
||||
# make gtk follow the cursor choices
|
||||
gtk.enable = true;
|
||||
|
||||
# ditto
|
||||
x11.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue