mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-23 12:42:01 +01:00
12 lines
140 B
Nix
12 lines
140 B
Nix
{ pkgs, lib, config, options, ... }:
|
|
|
|
{
|
|
config = with lib; {
|
|
programs = {
|
|
zsh = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|