add systems.nix
This commit is contained in:
parent
66fa4bac74
commit
ddeb4d69bf
2 changed files with 16 additions and 1 deletions
10
flake.nix
10
flake.nix
|
|
@ -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
7
systems.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
[
|
||||
"aarch64-darwin"
|
||||
"aarch64-linux"
|
||||
"x86_64-darwin"
|
||||
"x86_64-linux"
|
||||
"i686-linux"
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue