1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 12:42:01 +01:00
github.com-tboerger-nixos-c.../machines/modules/shells.nix
2022-04-11 00:22:59 +02:00

12 lines
140 B
Nix

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