mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-23 04:43:00 +09:00
19 lines
298 B
Nix
Executable file
19 lines
298 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;
|
|
in {
|
|
inherit
|
|
nix
|
|
python
|
|
lua
|
|
bash
|
|
markdown
|
|
html
|
|
yaml
|
|
;
|
|
}
|