add services

This commit is contained in:
Lukas Wurzinger 2025-06-02 18:51:26 +02:00
parent 3da6861add
commit bb85d6a94c
No known key found for this signature in database

View file

@ -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 = {