-
-
Notifications
You must be signed in to change notification settings - Fork 609
Expand file tree
/
Copy pathflake.nix
More file actions
21 lines (19 loc) · 602 Bytes
/
Copy pathflake.nix
File metadata and controls
21 lines (19 loc) · 602 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
description = "Container runtimes on macOS (and Linux) with minimal setup";
# Last revision with go_1_23
inputs.nixpkgs.url = "github:NixOS/nixpkgs/25.05";
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages.default = import ./colima.nix { inherit pkgs; };
devShell = import ./shell.nix { inherit pkgs; };
apps.default = {
type = "app";
program = "${self.packages.${system}.default}/bin/colima";
};
}
);
}