{ pkgs, ... }: let shellAliases = { "sc" = "systemctl"; "scu" = "systemctl --user"; }; in { programs.bash = { inherit shellAliases; }; programs.zsh = { inherit shellAliases; }; }