dotfiles/nixos/zsh/default.nix
Cyryl Płotnicki aa507c0814
Some checks failed
use nix / build (push) Failing after 4m4s
use zsh on work mac
2024-10-02 14:38:34 +01:00

15 lines
241 B
Nix

{
config,
pkgs,
lib,
cyplo,
...
}: let
username =
if cyplo ? username
then "${cyplo.username}"
else "cyryl";
in {
programs.zsh.enable = true;
home-manager.users."${username}" = {...}: {imports = [./home.nix];};
}