nix flake add systems input
This commit is contained in:
parent
22b727dbfc
commit
5803ada3b4
27
flake.nix
27
flake.nix
|
@ -1,14 +1,30 @@
|
||||||
{
|
{
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
nixpkgs = {
|
||||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||||
|
};
|
||||||
|
flake-parts = {
|
||||||
|
url = "github:hercules-ci/flake-parts";
|
||||||
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
systems = {
|
||||||
|
url = "github:nix-systems/default";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs@{ nixpkgs, flake-parts, ... }:
|
outputs = inputs @ {
|
||||||
|
nixpkgs,
|
||||||
|
flake-parts,
|
||||||
|
...
|
||||||
|
}:
|
||||||
flake-parts.lib.mkFlake {inherit inputs;} {
|
flake-parts.lib.mkFlake {inherit inputs;} {
|
||||||
systems = [ "x86_64-linux" "aarch64-linux" ];
|
systems = import inputs.systems;
|
||||||
|
|
||||||
perSystem = { pkgs, system, ... }: {
|
perSystem = {
|
||||||
|
pkgs,
|
||||||
|
system,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
devShells.default = pkgs.mkShell {packages = with pkgs; [marp-cli];};
|
devShells.default = pkgs.mkShell {packages = with pkgs; [marp-cli];};
|
||||||
|
|
||||||
packages.slides = pkgs.stdenvNoCC.mkDerivation {
|
packages.slides = pkgs.stdenvNoCC.mkDerivation {
|
||||||
|
@ -31,4 +47,3 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue