Files
develnixos.new/playground/example/default.nix
2024-06-29 14:37:35 +00:00

18 lines
174 B
Nix

{ config ? import ../config { } }:
let
app = import ./services { config = config; };
in
{
package = app;
app = {
type = "app";
program = "${app}";
};
}