Added Hyprcursor with rose-pine-hyprcursor theme. Moved username into a constant in home.nix. Installed Discord
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;
|
|
};
|
|
};
|
|
}
|