mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 18:55:47 +02:00
ac604883de
Signed-off-by: Hadi <hadi@example.com>
13 lines
211 B
Nix
13 lines
211 B
Nix
{
|
|
pkgs,
|
|
system,
|
|
...
|
|
}: {
|
|
packages.${system}.nixy = import ./package.nix {
|
|
inherit pkgs;
|
|
configDirectory = "$HOME/.config/nixos";
|
|
};
|
|
|
|
homeManagerModules.nixy = {imports = [./default.nix];};
|
|
}
|