21 lines
328 B
Nix
21 lines
328 B
Nix
{
|
|
den,
|
|
modules,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
flake-file.inputs = {
|
|
hytale-launcher.url = "github:JPyke3/hytale-launcher-nix";
|
|
};
|
|
modules.hytale-launcher = {
|
|
homeManager =
|
|
{ pkgs, ... }:
|
|
{
|
|
home.packages = [
|
|
inputs.hytale-launcher.packages.${pkgs.system}.default
|
|
];
|
|
};
|
|
};
|
|
}
|