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 0fb01f4edb
commit 55b9d772eb
3 changed files with 6 additions and 2 deletions

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
];
}