DEVELOPMENT ENVIRONMENT

~liljamo/makeimg.nix

ref: b31161d177f9c47ae79dd0f3732b861031c96418 makeimg.nix/flake.nix -rw-r--r-- 390 bytes
b31161d1Jonni Liljamo feat: add pass to bins (this feels and is wrong lol) 8 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
    flake-parts.url = "github:hercules-ci/flake-parts";
  };

  outputs = inputs @ {...}:
    inputs.flake-parts.lib.mkFlake {inherit inputs;} {
      systems = ["x86_64-linux"];
      perSystem = {
        pkgs,
        ...
      }: {
        packages.default = pkgs.callPackage ./default.nix {};
      };
    };
}