1
0
Fork 0
musicomp/flake.nix

37 lines
730 B
Nix
Raw Normal View History

2025-04-06 22:30:33 +02:00
{
description = "musicomp";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = {
self,
nixpkgs,
flake-parts,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux" "aarch64-linux"];
2025-05-28 02:10:21 +02:00
flake.nixosModules.default = import ./module.nix self;
2025-04-06 22:30:33 +02:00
perSystem = {
pkgs,
inputs',
lib,
...
}: {
2025-04-08 01:24:06 +02:00
devShells.default = pkgs.mkShellNoCC {
packages = [
pkgs.python3
pkgs.python3Packages.hatchling
2025-04-06 22:30:33 +02:00
];
};
2025-05-28 02:10:21 +02:00
packages.default = pkgs.callPackage ./package.nix {};
2025-04-06 22:30:33 +02:00
};
};
}