diff --git a/.gitignore b/.gitignore deleted file mode 100644 index b2be92b..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -result diff --git a/flake.lock b/flake.lock deleted file mode 100644 index cbb62c0..0000000 --- a/flake.lock +++ /dev/null @@ -1,40 +0,0 @@ -{ - "nodes": { - "flake-utils": { - "locked": { - "lastModified": 1623875721, - "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "f7e004a55b120c02ecb6219596820fcd32ca8772", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, - "nixpkgs": { - "locked": { - "lastModified": 1627128856, - "narHash": "sha256-yw3lA8zyNFhj309lmxvNByEEymRT1rRy5oE+jEPnsP4=", - "path": "/nix/store/3iw3gnv08yaz0v5qjhmv6g4dlj7pirfz-source", - "rev": "dd14e5d78e90a2ccd6007e569820de9b4861a6c2", - "type": "path" - }, - "original": { - "id": "nixpkgs", - "type": "indirect" - } - }, - "root": { - "inputs": { - "flake-utils": "flake-utils", - "nixpkgs": "nixpkgs" - } - } - }, - "root": "root", - "version": 7 -} diff --git a/flake.nix b/flake.nix deleted file mode 100644 index c749e05..0000000 --- a/flake.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ - description = "Assorted scripts"; - inputs = { - flake-utils.url = github:numtide/flake-utils; - }; - outputs = { self, flake-utils, nixpkgs, ... }: (flake-utils.lib.eachDefaultSystem (system: - let - pkgs = nixpkgs.legacyPackages.${system}; - in - { - defaultPackage = self.packages.${system}.scripts; - packages.scripts = pkgs.callPackage ./default.nix { }; - } - )); -}