{ description = "fc k8s runtime flake"; inputs = { nixpkgs = { url = "github:NixOS/nixpkgs/nixos-unstable-small"; }; flake-compat = { url = "github:edolstra/flake-compat"; flake = false; }; utils.url = "github:numtide/flake-utils"; ragenix = { url = "github:yaxitech/ragenix"; inputs.flake-utils.follows = "utils"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, utils, ... }@inputs: utils.lib.eachDefaultSystem (system: let pkgs = nixpkgs.legacyPackages.${system}; in { devShell = import ./shell.nix { inherit pkgs; }; } ); }