Hypr, fix rebuild not working due to missing icons

The old .gitignore contained the hypr icons path. Newer versions of nix
did not want to rebuild because hypr/icons didn't exist in git. The fix
was simple to move the .gitignore from the home directory to inside of
the icons folder and include it. That way icons can be added and the
folder exists.

Oh--this also adds musescore because that was the impetus to fix this...
It has nothing critical to do with the commit, I'd just rather have them
in one rn
This commit is contained in:
Julia Lange 2025-01-22 10:19:51 -08:00
parent 9ad9e42199
commit bb463bfb3f
Signed by: Julia
SSH key fingerprint: SHA256:KI8YxpkPRbnDRkXPgCuQCVz181++Vy7NAvmQj8alOhM
3 changed files with 6 additions and 2 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
hmModules/apps/hypr/icons/

1
hmModules/apps/hypr/icons/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
*

View file

@ -1,4 +1,4 @@
{ config, ... }:
{ config, pkgs, ... }:
{
hypr.enable = true;
@ -104,4 +104,8 @@
beeper.enable = true;
discord.enable = true;
extraPkgs = with pkgs; [
# Applications
musescore
];
}