dotfiles/nixos/zsh/default.nix
Cyryl Płotnicki 0e16b9d224
Some checks failed
use nix / build (push) Failing after 4m29s
make sure zsh is the default shell
2025-01-04 16:28:12 +00:00

10 lines
213 B
Nix

{
config,
pkgs,
lib,
...
}: {
programs.zsh.enable = true;
users.users."${config.local.username}".shell = pkgs.zsh;
home-manager.users."${config.local.username}" = {...}: {imports = [./home.nix];};
}