From bb463bfb3fd1c49c5846508d08cb4a62162ef4f3 Mon Sep 17 00:00:00 2001 From: Julia Lange Date: Wed, 22 Jan 2025 10:19:51 -0800 Subject: [PATCH] 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 --- .gitignore | 1 - hmModules/apps/hypr/icons/.gitignore | 1 + hosts/jibril/users/pan/user.nix | 6 +++++- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 hmModules/apps/hypr/icons/.gitignore diff --git a/.gitignore b/.gitignore index fe40c22..e69de29 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +0,0 @@ -hmModules/apps/hypr/icons/ diff --git a/hmModules/apps/hypr/icons/.gitignore b/hmModules/apps/hypr/icons/.gitignore new file mode 100644 index 0000000..72e8ffc --- /dev/null +++ b/hmModules/apps/hypr/icons/.gitignore @@ -0,0 +1 @@ +* diff --git a/hosts/jibril/users/pan/user.nix b/hosts/jibril/users/pan/user.nix index 24b4965..b915e9e 100644 --- a/hosts/jibril/users/pan/user.nix +++ b/hosts/jibril/users/pan/user.nix @@ -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 + ]; }