aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorXinglu Chen <public@yoctocell.xyz>2021-06-21 15:25:58 +0200
committerXinglu Chen <public@yoctocell.xyz>2021-06-21 15:29:43 +0200
commit4c8e7ebfcec6fbb0fcd9971bb4c2ac55c6b8bfd2 (patch)
tree0caa290f3dfd7e9fb63489e43c888ad40929f65e /flake.nix
parentaebea916b6e0b35e68a9ba3cafdd760d390336b0 (diff)
Remove Nix files.
I am no longer using Nix for managing user packages, and I have no interest in actually maintaining these files. * git-email.texi (Installation): Remove Nix installation instructions. * default.nix, flake.lock, flake.nix: Remove files. Signed-off-by: Xinglu Chen <public@yoctocell.xyz>
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/flake.nix b/flake.nix
deleted file mode 100644
index 06e5edc..0000000
--- a/flake.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- description = "git-email.el flake";
-
- inputs = {
- nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
- flake-utils.url = "github:numtide/flake-utils";
- };
-
- outputs = { self, nixpkgs, flake-utils }:
- flake-utils.lib.eachDefaultSystem (system:
- let pkgs = nixpkgs.legacyPackages.${system};
- in
- rec {
- packages = pkgs.lib.recurseIntoAttrs (pkgs.callPackage ./. {});
- defaultPackage = packages.git-email-full-git;
- });
-}