From 242e68795268fba7f0aa60d26cebaa40ba603d37 Mon Sep 17 00:00:00 2001 From: milahu Date: Sat, 25 Feb 2023 10:42:44 +0100 Subject: [PATCH] rm flake.nix --- flake.nix | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 flake.nix diff --git a/flake.nix b/flake.nix deleted file mode 100644 index 864ea2f..0000000 --- a/flake.nix +++ /dev/null @@ -1,21 +0,0 @@ -# based on https://github.com/Mic92/nur-packages/blob/master/flake.nix - -{ - description = " My personal NUR repository"; - inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - outputs = { self, nixpkgs }: let - systems = [ - "x86_64-linux" - "i686-linux" - "x86_64-darwin" - "aarch64-linux" - "armv6l-linux" - "armv7l-linux" - ]; - forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system); - in { - packages = forAllSystems (system: import ./default.nix { - pkgs = import nixpkgs { inherit system; }; - }); - }; -}