Files
develnixos.new/playground/example/default.nix
2023-06-10 18:08:31 +00:00

17 lines
174 B
Nix

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