mirror of
https://codeberg.org/mart-w/nixos-x13s.git
synced 2024-11-12 18:54:48 +01:00
26 lines
553 B
Nix
26 lines
553 B
Nix
|
{
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
||
|
};
|
||
|
|
||
|
outputs =
|
||
|
inputs@{ flake-parts, ... }:
|
||
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
||
|
imports = [ ./packages/part.nix ];
|
||
|
|
||
|
systems = [
|
||
|
"x86_64-linux"
|
||
|
"aarch64-linux"
|
||
|
];
|
||
|
|
||
|
perSystem =
|
||
|
{ pkgs, ... }:
|
||
|
{
|
||
|
devShells.default = pkgs.mkShellNoCC { packages = [ pkgs.npins ]; };
|
||
|
};
|
||
|
|
||
|
flake.nixosModules.default = import ./module.nix;
|
||
|
};
|
||
|
}
|