this repo has no description

init

belsanti.xyz 48123448

verified
Changed files
+98
+77
flake.lock
···
···
+
{
+
"nodes": {
+
"flake-parts": {
+
"inputs": {
+
"nixpkgs-lib": "nixpkgs-lib"
+
},
+
"locked": {
+
"lastModified": 1762810396,
+
"narHash": "sha256-dxFVgQPG+R72dkhXTtqUm7KpxElw3u6E+YlQ2WaDgt8=",
+
"owner": "hercules-ci",
+
"repo": "flake-parts",
+
"rev": "0bdadb1b265fb4143a75bd1ec7d8c915898a9923",
+
"type": "github"
+
},
+
"original": {
+
"owner": "hercules-ci",
+
"repo": "flake-parts",
+
"type": "github"
+
}
+
},
+
"nixpkgs": {
+
"locked": {
+
"lastModified": 1762596750,
+
"narHash": "sha256-rXXuz51Bq7DHBlfIjN7jO8Bu3du5TV+3DSADBX7/9YQ=",
+
"owner": "NixOS",
+
"repo": "nixpkgs",
+
"rev": "b6a8526db03f735b89dd5ff348f53f752e7ddc8e",
+
"type": "github"
+
},
+
"original": {
+
"owner": "NixOS",
+
"ref": "nixos-unstable",
+
"repo": "nixpkgs",
+
"type": "github"
+
}
+
},
+
"nixpkgs-lib": {
+
"locked": {
+
"lastModified": 1761765539,
+
"narHash": "sha256-b0yj6kfvO8ApcSE+QmA6mUfu8IYG6/uU28OFn4PaC8M=",
+
"owner": "nix-community",
+
"repo": "nixpkgs.lib",
+
"rev": "719359f4562934ae99f5443f20aa06c2ffff91fc",
+
"type": "github"
+
},
+
"original": {
+
"owner": "nix-community",
+
"repo": "nixpkgs.lib",
+
"type": "github"
+
}
+
},
+
"pkgs-by-name-for-flake-parts": {
+
"locked": {
+
"lastModified": 1743779435,
+
"narHash": "sha256-5eaQ3iKcwUbLw7pOJJqV85qgf5L+ihfsISrifGM7czQ=",
+
"owner": "drupol",
+
"repo": "pkgs-by-name-for-flake-parts",
+
"rev": "477b3e8f981e3d7bac9d297e64796c918942f744",
+
"type": "github"
+
},
+
"original": {
+
"owner": "drupol",
+
"repo": "pkgs-by-name-for-flake-parts",
+
"type": "github"
+
}
+
},
+
"root": {
+
"inputs": {
+
"flake-parts": "flake-parts",
+
"nixpkgs": "nixpkgs",
+
"pkgs-by-name-for-flake-parts": "pkgs-by-name-for-flake-parts"
+
}
+
}
+
},
+
"root": "root",
+
"version": 7
+
}
+21
flake.nix
···
···
+
{
+
description = "Description for the project";
+
+
inputs = {
+
flake-parts.url = "github:hercules-ci/flake-parts";
+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
+
pkgs-by-name-for-flake-parts.url = "github:drupol/pkgs-by-name-for-flake-parts";
+
};
+
+
outputs =
+
inputs@{ flake-parts, ... }:
+
flake-parts.lib.mkFlake { inherit inputs; } {
+
imports = [ inputs.pkgs-by-name-for-flake-parts.flakeModule ];
+
systems = inputs.nixpkgs.lib.systems.flakeExposed;
+
perSystem =
+
{ ... }:
+
{
+
pkgsDirectory = ./pkgs/by-name;
+
};
+
};
+
}