2024-07-17 04:09:08 +01:00
|
|
|
{
|
2024-07-17 22:04:13 +01:00
|
|
|
description = "Pankomacs";
|
2024-07-17 04:09:08 +01:00
|
|
|
inputs = {
|
2024-11-23 21:03:41 +00:00
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
2024-07-17 04:09:08 +01:00
|
|
|
parts = {
|
|
|
|
url = "github:hercules-ci/flake-parts";
|
|
|
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
emacs = {
|
|
|
|
url = "github:nix-community/emacs-overlay";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
};
|
2025-02-04 15:09:03 +00:00
|
|
|
outputs = inputs:
|
2025-01-28 16:27:51 +00:00
|
|
|
inputs.parts.lib.mkFlake {
|
|
|
|
inherit inputs;
|
|
|
|
} {
|
2024-07-17 04:09:08 +01:00
|
|
|
systems = [
|
|
|
|
"x86_64-linux"
|
|
|
|
];
|
2024-07-17 23:49:40 +01:00
|
|
|
|
2025-02-04 15:09:03 +00:00
|
|
|
imports = [
|
|
|
|
./lib.nix
|
|
|
|
];
|
2025-01-28 16:27:51 +00:00
|
|
|
|
2025-02-04 15:09:03 +00:00
|
|
|
perSystem = {pkgs, ...}: {
|
2025-01-28 16:27:51 +00:00
|
|
|
formatter = pkgs.alejandra;
|
|
|
|
};
|
2024-07-17 04:09:08 +01:00
|
|
|
};
|
|
|
|
}
|