nixos-config/modules/shell/default.nix
2020-08-16 16:33:44 +08:00

13 lines
177 B
Nix
Executable File

# 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
];
}