add services
This commit is contained in:
parent
3da6861add
commit
bb85d6a94c
1 changed files with 15 additions and 0 deletions
|
@ -13,6 +13,9 @@
|
||||||
url = "github:numtide/treefmt-nix";
|
url = "github:numtide/treefmt-nix";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
# FIXME: Uncomment these if services are needed.
|
||||||
|
# inputs.process-compose.url = "github:Platonic-Systems/process-compose-flake";
|
||||||
|
# inputs.services.url = "github:juspay/services-flake";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
|
@ -22,11 +25,16 @@
|
||||||
flake-parts,
|
flake-parts,
|
||||||
hooks,
|
hooks,
|
||||||
treefmt,
|
treefmt,
|
||||||
|
# FIXME: Uncomment these if services are needed.
|
||||||
|
# process-compose,
|
||||||
|
# services,
|
||||||
}@inputs:
|
}@inputs:
|
||||||
flake-parts.lib.mkFlake { inherit inputs; } {
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
||||||
imports = [
|
imports = [
|
||||||
hooks.flakeModule
|
hooks.flakeModule
|
||||||
treefmt.flakeModule
|
treefmt.flakeModule
|
||||||
|
# FIXME: Uncomment this if services are needed.
|
||||||
|
# inputs.process-compose.flakeModule
|
||||||
];
|
];
|
||||||
|
|
||||||
systems = nixpkgs.lib.systems.flakeExposed;
|
systems = nixpkgs.lib.systems.flakeExposed;
|
||||||
|
@ -63,6 +71,13 @@
|
||||||
|
|
||||||
# FIXME: Uncomment this if the flake should export a package.
|
# FIXME: Uncomment this if the flake should export a package.
|
||||||
# packages.default = pkgs.callPackage ./package.nix {};
|
# packages.default = pkgs.callPackage ./package.nix {};
|
||||||
|
|
||||||
|
# FIXME: Uncomment this if services are needed.
|
||||||
|
# process-compose.myservices = {
|
||||||
|
# imports = [
|
||||||
|
# inputs.services.processComposeModules.default
|
||||||
|
# ];
|
||||||
|
# };
|
||||||
};
|
};
|
||||||
|
|
||||||
flake = {
|
flake = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue