1
0
Fork 0
mirror of https://github.com/tboerger/nixos-config synced 2024-06-09 04:46:03 +02:00
github.com-tboerger-nixos-c.../shared/modules/shells/default.nix

13 lines
140 B
Nix

{ pkgs, lib, config, options, ... }:
with lib;
{
config = {
programs = {
zsh = {
enable = true;
};
};
};
}