From bf9f2cc13e8ff24480b84680fcdeec951abc1948 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Mon, 23 Sep 2024 18:53:45 +0200 Subject: [PATCH] cli: remove nushell --- modules/programs/cli/module.nix | 1 - modules/programs/cli/nushell.nix | 29 ----------------------------- 2 files changed, 30 deletions(-) delete mode 100644 modules/programs/cli/nushell.nix diff --git a/modules/programs/cli/module.nix b/modules/programs/cli/module.nix index 8a0b3b6..d558412 100644 --- a/modules/programs/cli/module.nix +++ b/modules/programs/cli/module.nix @@ -7,7 +7,6 @@ _: { ./zoxide.nix ./beets.nix ./zellij - ./nushell.nix ./eza.nix ]; } diff --git a/modules/programs/cli/nushell.nix b/modules/programs/cli/nushell.nix deleted file mode 100644 index 5820771..0000000 --- a/modules/programs/cli/nushell.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: let - inherit (config.modules.other.system) username; - inherit (lib) mkIf; - cfg = config.modules.system.programs.nushell; -in { - config = mkIf cfg.enable { - home-manager.users.${username} = { - programs.nushell = { - enable = true; - package = pkgs.nushell; - shellAliases = { - c = "clear"; - cc = "cd; clear"; - mv = "mv -iv"; - rm = "trash -v"; - lg = "lazygit"; - v = "nvim"; - h = "hx"; - e = "emacs"; - }; - }; - }; - }; -}