From ad96e0a669ee99359d2a3fbc72793cfde4b60ce5 Mon Sep 17 00:00:00 2001 From: Petri Hienonen Date: Sat, 17 Jan 2026 14:48:48 +0200 Subject: Biome format --- flake.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..20ddff5 --- /dev/null +++ b/flake.nix @@ -0,0 +1,28 @@ +{ + description = "Relesoft Radio"; + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/release-25.11"; + }; + + outputs = + { self, nixpkgs }: + let + supportedSystems = [ + "x86_64-linux" + "aarch64-linux" + ]; + forAllSystems = nixpkgs.lib.genAttrs supportedSystems; + nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; }); + in + { + devShells = forAllSystems ( + system: + let + pkgs = nixpkgsFor.${system}; + in + { + default = pkgs.mkShell { buildInputs = with pkgs; [ biome ]; }; + } + ); + }; +} -- cgit v1.2.3-70-g09d2