This commit is contained in:
Asaki Yuki 2026-04-13 11:40:01 +07:00
parent 32d10077dd
commit 55d9eb4f36
3 changed files with 39 additions and 28 deletions

View file

@ -1,4 +1,10 @@
{ libs, ... }:
{
libs,
custom,
config,
pkgs,
...
}:
{
imports = [
./programs.nix
@ -31,6 +37,13 @@
(libs.root "/overlays/nixpkgs.nix")
];
home-manager.users.asakiyuki.home.pointerCursor =
(custom.cursors {
name = config.device.cursors;
size = 48;
})
{ pkgs = pkgs; };
xdg.menus.enable = true;
services.dbus.enable = true;
}