Martin Berg Alstad 6d6331f4b4
☝ Cursors
Added Hyprcursor with rose-pine-hyprcursor theme.

Moved username into a constant in home.nix.

Installed Discord
2024-12-29 10:56:58 +01:00

15 lines
198 B
Nix

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