nixos-config/modules/shell/default.nix

13 lines
177 B
Nix
Raw Normal View History

2020-08-06 15:35:49 +00:00
# All of the command-line tools will be put here.
{ config, options, lib, pkgs, ... }:
with lib;
{
imports = [
./base.nix
./git.nix
./lf.nix
./zsh.nix
];
}