changed package name from 'fern' to 'shed'

This commit is contained in:
2026-02-24 18:02:13 -05:00
parent 2f0cb931d6
commit 90e69f96d2
17 changed files with 130 additions and 130 deletions

View File

@@ -13,7 +13,7 @@
in
{
packages.default = pkgs.rustPlatform.buildRustPackage {
pname = "fern";
pname = "shed";
version = "0.3.0";
src = self;
@@ -23,22 +23,22 @@
};
doCheck = false;
passthru.shellPath = "/bin/fern";
passthru.shellPath = "/bin/shed";
meta = with pkgs.lib; {
description = "A Linux shell written in Rust";
homepage = "https://github.com/km-clay/fern";
homepage = "https://github.com/km-clay/shed";
license = licenses.mit;
maintainers = [ ];
platforms = platforms.linux;
};
};
}) // {
nixosModules.fern = import ./nix/module.nix;
homeModules.fern = import ./nix/hm-module.nix;
nixosModules.shed = import ./nix/module.nix;
homeModules.shed = import ./nix/hm-module.nix;
overlays.default = final: prev: {
fern = self.packages.${final.stdenv.hostPlatform.system}.default;
shed = self.packages.${final.stdenv.hostPlatform.system}.default;
};
};
}