nix/modules/home-manager/desktop.nix

18 lines
322 B
Nix
Raw Normal View History

2024-01-21 13:01:05 -06:00
{
pkgs,
outputs,
...
}: {
2023-10-05 13:43:28 -05:00
imports = with outputs.homeManagerModules; [
kitty
2023-11-07 21:30:26 -06:00
wezterm
2023-10-05 13:43:28 -05:00
];
2024-01-21 13:01:05 -06:00
home.pointerCursor = {
name = "Bibata-Modern-Classic";
package = pkgs.bibata-cursors;
size = 64; # TODO: this doesn't seem to work -- at least in Sway
# some icons are also missing (hand2?)
};
2023-10-05 13:43:28 -05:00
}