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

@@ -1,16 +1,16 @@
{ config, lib, pkgs, ... }:
let
cfg = config.programs.fern;
cfg = config.programs.shed;
in
{
options.programs.fern = {
enable = lib.mkEnableOption "fern shell";
options.programs.shed = {
enable = lib.mkEnableOption "shed shell";
package = lib.mkOption {
type = lib.types.package;
default = pkgs.fern;
description = "The fern package to use";
default = pkgs.shed;
description = "The shed package to use";
};
};