From 4026c0fc2a05b025397c545fdcced3f1bfc5bc1c Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Sat, 14 Feb 2026 14:19:08 +0100 Subject: [PATCH] Revert "comment out useless stuff" This reverts commit 82173db312c910a7c4899ca377ae2e79296c550c. --- 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 feee5a7..b06e7f2 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; + }; }