modularized home packages

This commit is contained in:
2024-10-31 22:56:43 -04:00
parent fcd11e5127
commit 9a435da5e3
4 changed files with 85 additions and 0 deletions

11
home/packages/default.nix Normal file
View File

@ -0,0 +1,11 @@
{
pkgs,
lib,
...
}: {
imports = [
./common.nix
./darwin.nix
./linux.nix
];
}