chore: Link paths at the system level

Fixes an issue where paths wouldn't be linked previously unless
manually specified.
This commit is contained in:
Donovan Glover 2024-04-06 10:26:02 -04:00
parent 10bc64f097
commit 3fc9cb9c81
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 6 additions and 6 deletions

View File

@ -12,12 +12,6 @@ in
home-manager.sharedModules = attrValues self.homeManagerModules; home-manager.sharedModules = attrValues self.homeManagerModules;
environment.systemPackages = attrValues self.packages.${pkgs.system}; environment.systemPackages = attrValues self.packages.${pkgs.system};
environment.pathsToLink = [
"/share/backgrounds"
"/share/eww"
"/share/fonts"
];
modules = { modules = {
hardware = { hardware = {
disableLaptopKeyboard = true; disableLaptopKeyboard = true;

View File

@ -207,5 +207,11 @@ in
enable = true; enable = true;
enableExcludeWrapper = false; enableExcludeWrapper = false;
}; };
environment.pathsToLink = [
"/share/backgrounds"
"/share/eww"
"/share/fonts"
];
}; };
} }