From 82173db312c910a7c4899ca377ae2e79296c550c Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Sat, 14 Feb 2026 12:38:41 +0100 Subject: [PATCH] comment out useless stuff --- modules/linux/shell/default.nix | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/modules/linux/shell/default.nix b/modules/linux/shell/default.nix index b06e7f2..feee5a7 100644 --- a/modules/linux/shell/default.nix +++ b/modules/linux/shell/default.nix @@ -1,17 +1,17 @@ { config, lib, pkgs, ... }: let inherit (lib) concatStringsSep const flatten getAttr mapAttrsToList mkForce unique; in { - users.defaultUserShell = pkgs.zsh; - - environment.sessionVariables.SHELLS = config.home-manager.users - |> mapAttrsToList (const <| getAttr "shellsByPriority") - |> flatten - |> map (drv: "${drv}${drv.shellPath}") - |> unique - |> concatStringsSep ":"; - - environment.shellAliases = { - ls = mkForce null; - l = mkForce null; - }; + # users.defaultUserShell = pkgs.zsh; + # + # environment.sessionVariables.SHELLS = config.home-manager.users + # |> mapAttrsToList (const <| getAttr "shellsByPriority") + # |> flatten + # |> map (drv: "${drv}${drv.shellPath}") + # |> unique + # |> concatStringsSep ":"; + # + # environment.shellAliases = { + # ls = mkForce null; + # l = mkForce null; + # }; }