mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-26 07:43:45 +01:00
23 lines
303 B
Nix
23 lines
303 B
Nix
{ pkgs, lib, config, options, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./develop.nix
|
|
./direnv.nix
|
|
./fzf.nix
|
|
./gnupg.nix
|
|
./golang.nix
|
|
./kube.nix
|
|
./lsd.nix
|
|
./minecraft.nix
|
|
./neovim.nix
|
|
./readline.nix
|
|
];
|
|
|
|
options = with lib; {
|
|
profile = {
|
|
programs = { };
|
|
};
|
|
};
|
|
}
|