1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2025-05-12 17:15:30 +02:00
commit 4d6de9beb2
No known key found for this signature in database
7 changed files with 1016 additions and 0 deletions

32
flake.nix Normal file
View file

@ -0,0 +1,32 @@
{
description = "nini";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs =
{
self,
flake-parts,
...
}@inputs:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
"aarch64-linux"
];
flake.nixosModules.default = import ./module.nix self;
perSystem =
{
pkgs,
...
}:
{
packages.default = pkgs.callPackage ./package.nix { };
};
};
}