mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 05:12:34 +02:00
d71c9d8169
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
15 lines
219 B
Nix
15 lines
219 B
Nix
{
|
|
pkgs,
|
|
system,
|
|
...
|
|
}: {
|
|
packages.${system}.nixy = import ./package.nix {
|
|
inherit pkgs;
|
|
configDirectory = "$HOME/.config/nixos";
|
|
};
|
|
|
|
homeManagerModules.nixy = {
|
|
imports = [./default.nix];
|
|
};
|
|
}
|