universe/host/default.nix

15 lines
197 B
Nix
Raw Normal View History

2025-03-14 16:51:07 +00:00
{
inputs,
system,
...
}: {
2025-03-02 19:00:20 +00:00
system.stateVersion = "24.11";
2025-03-14 16:51:07 +00:00
imports = inputs.nypkgs.legacyPackages.${system}.lib.umport {
2025-03-02 19:00:20 +00:00
path = ./.;
exclude = [
./default.nix
];
};
}