15 lines
198 B
Nix
15 lines
198 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
hyprcursor
|
||
|
];
|
||
|
|
||
|
home.file = {
|
||
|
".local/share/icons/rose-pine-hyprcursor" = {
|
||
|
source = ./icons;
|
||
|
recursive = true;
|
||
|
};
|
||
|
};
|
||
|
}
|