dotfiles/nixos/zsh/default.nix

11 lines
213 B
Nix
Raw Normal View History

2023-08-13 17:00:41 +01:00
{
config,
pkgs,
lib,
...
}: {
2023-06-19 21:34:51 +01:00
programs.zsh.enable = true;
2025-01-04 16:28:12 +00:00
users.users."${config.local.username}".shell = pkgs.zsh;
home-manager.users."${config.local.username}" = {...}: {imports = [./home.nix];};
2023-06-19 21:34:51 +01:00
}