mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
23 lines
372 B
Nix
Executable file
23 lines
372 B
Nix
Executable file
let
|
|
nix = import ./nix.nix;
|
|
python = import ./python.nix;
|
|
lua = import ./lua.nix;
|
|
bash = import ./bash.nix;
|
|
markdown = import ./markdown.nix;
|
|
html = import ./html.nix;
|
|
yaml = import ./yaml.nix;
|
|
toml = import ./toml.nix;
|
|
just = import ./just.nix;
|
|
in {
|
|
inherit
|
|
nix
|
|
python
|
|
lua
|
|
bash
|
|
markdown
|
|
html
|
|
yaml
|
|
toml
|
|
just
|
|
;
|
|
}
|