refactor: distribute packages from _lib/packages.nix into aspect modules

This commit is contained in:
2026-03-08 19:08:15 +00:00
parent 0aa8606153
commit bfc9af382f
14 changed files with 129 additions and 74 deletions

View File

@@ -1,5 +1,9 @@
{...}: {
den.aspects.desktop.homeManager = {...}: {
den.aspects.desktop.homeManager = {
pkgs,
lib,
...
}: {
programs.aerospace = {
enable = true;
launchd.enable = true;
@@ -140,5 +144,11 @@
};
};
};
home.packages = with pkgs;
lib.optionals stdenv.isDarwin [
_1password-gui
raycast
];
};
}