aad config

This commit is contained in:
2023-06-10 14:24:44 +00:00
parent 5fcd66df54
commit e81707eb1b

10
config/flake.nix Normal file
View File

@@ -0,0 +1,10 @@
{
inputs.nixpkgs.url = "nixpkgs/nixos-23.05";
outputs = { self, nixpkgs }:
let
supportedSystems = [ "x86_64-linux" "aarch64-linux" ];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; });
in rec { nixpkgs = nixpkgsFor; };
}