mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
13 lines
177 B
Nix
Executable File
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
|
|
];
|
|
}
|