10 lines
134 B
Nix
10 lines
134 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.zsh.enable = true;
|
|
|
|
home-manager.users.cyryl = {...}: {imports = [./home.nix];};
|
|
}
|