implemented the pushd, popd, and dirs builtins

This commit is contained in:
2026-02-20 01:29:40 -05:00
parent e8473e82a1
commit 2184b9b361
5 changed files with 437 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
{
description = "A very basic flake";
description = "A Linux shell written in Rust";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
@@ -38,7 +38,7 @@
homeModules.fern = import ./nix/hm-module.nix;
overlays.default = final: prev: {
fern = self.packages.${final.system}.default;
fern = self.packages.${final.stdenv.hostPlatform.system}.default;
};
};
}