add systems.nix

This commit is contained in:
sharings 2025-07-26 13:26:27 +00:00
parent 66fa4bac74
commit ddeb4d69bf
2 changed files with 16 additions and 1 deletions

View file

@ -12,8 +12,12 @@
url = "github:nix-community/nixvim/main";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
inputs.systems.follows = "my_systems";
};
flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "my_systems";
};
flake-utils.url = "github:numtide/flake-utils";
flake-parts.url = "github:hercules-ci/flake-parts";
# nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
# nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
@ -35,6 +39,10 @@
url = "github:numtide/devshell";
inputs.nixpkgs.follows = "nixpkgs";
};
my_systems = {
url = "path:./systems.nix";
flake = false;
};
};
outputs =

7
systems.nix Normal file
View file

@ -0,0 +1,7 @@
[
"aarch64-darwin"
"aarch64-linux"
"x86_64-darwin"
"x86_64-linux"
"i686-linux"
]