├── .gitignore ├── LICENSE ├── README.md ├── dockerfile ├── examples ├── batata.nix ├── book.nix ├── docs.nix ├── gitignore.nix ├── hello.nix ├── interpolation.nix ├── license.nix ├── nim.nix ├── nim │ ├── clustersSTS.nim │ ├── jsonildo.nim │ ├── memoise.nim │ └── pomodoro.nix ├── nushell.nix ├── nushell │ ├── nuon.bash │ ├── nuon.fish │ ├── nuon.nu │ ├── nush.nuon.nix │ └── psub.nix ├── readme.nix ├── readme │ ├── about.md │ ├── examples.nix │ ├── installation.md │ ├── issues.md │ ├── modules.nix │ ├── modules │ │ ├── builtins.md │ │ ├── document.nix │ │ ├── json-vs-nix.nix │ │ ├── modules.md │ │ ├── nix-examples.nix │ │ ├── nix-lang.md │ │ └── share.md │ ├── seeAlso.md │ ├── toc.md │ └── todo.md ├── services.nix ├── summary.md ├── watch.nix └── world.nix ├── flake.lock ├── flake.nix ├── generated ├── hello.hcl ├── hello.json ├── hello.toml ├── hello.txt ├── hello.yaml └── interpolation.yaml ├── modules ├── alias-complete.nix ├── alias.nix ├── cmds.nix ├── direnv.nix ├── direnvrc ├── dockerfile.nix ├── dockerfile │ └── directives.nix ├── docs.nix ├── docs │ ├── asString.nix │ ├── indentity.nix │ └── markdown.nix ├── file-format.nix ├── file-type.nix ├── files.nix ├── git.nix ├── gitignore.nix ├── hcl.nix ├── json.nix ├── mdbook.nix ├── nim.nix ├── nim │ └── laziness.nim ├── nuon.nix ├── nush.nix ├── nushell.nix ├── options-lib.nix ├── services.nix ├── services │ ├── bundle.nix │ ├── execline.nix │ ├── longrun.nix │ ├── oneshot.nix │ ├── rc-devshell.nix │ ├── rc-options.nix │ ├── rc.nix │ ├── s6.nix │ └── svcCtl.fish ├── spdx.nix ├── startup.nix ├── text.nix ├── toml.nix ├── watch │ ├── default.nix │ └── interface.nix └── yaml.nix ├── project.nix └── templates └── default ├── flake.nix └── project.nix /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/README.md -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/dockerfile -------------------------------------------------------------------------------- /examples/batata.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/batata.nix -------------------------------------------------------------------------------- /examples/book.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/book.nix -------------------------------------------------------------------------------- /examples/docs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/docs.nix -------------------------------------------------------------------------------- /examples/gitignore.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/gitignore.nix -------------------------------------------------------------------------------- /examples/hello.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/hello.nix -------------------------------------------------------------------------------- /examples/interpolation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/interpolation.nix -------------------------------------------------------------------------------- /examples/license.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/license.nix -------------------------------------------------------------------------------- /examples/nim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/nim.nix -------------------------------------------------------------------------------- /examples/nim/clustersSTS.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/nim/clustersSTS.nim -------------------------------------------------------------------------------- /examples/nim/jsonildo.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/nim/jsonildo.nim -------------------------------------------------------------------------------- /examples/nim/memoise.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/nim/memoise.nim -------------------------------------------------------------------------------- /examples/nim/pomodoro.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/nim/pomodoro.nix -------------------------------------------------------------------------------- /examples/nushell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/nushell.nix -------------------------------------------------------------------------------- /examples/nushell/nuon.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/nushell/nuon.bash -------------------------------------------------------------------------------- /examples/nushell/nuon.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/nushell/nuon.fish -------------------------------------------------------------------------------- /examples/nushell/nuon.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/nushell/nuon.nu -------------------------------------------------------------------------------- /examples/nushell/nush.nuon.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/nushell/nush.nuon.nix -------------------------------------------------------------------------------- /examples/nushell/psub.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/nushell/psub.nix -------------------------------------------------------------------------------- /examples/readme.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme.nix -------------------------------------------------------------------------------- /examples/readme/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/about.md -------------------------------------------------------------------------------- /examples/readme/examples.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/examples.nix -------------------------------------------------------------------------------- /examples/readme/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/installation.md -------------------------------------------------------------------------------- /examples/readme/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/issues.md -------------------------------------------------------------------------------- /examples/readme/modules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/modules.nix -------------------------------------------------------------------------------- /examples/readme/modules/builtins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/modules/builtins.md -------------------------------------------------------------------------------- /examples/readme/modules/document.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/modules/document.nix -------------------------------------------------------------------------------- /examples/readme/modules/json-vs-nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/modules/json-vs-nix.nix -------------------------------------------------------------------------------- /examples/readme/modules/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/modules/modules.md -------------------------------------------------------------------------------- /examples/readme/modules/nix-examples.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/modules/nix-examples.nix -------------------------------------------------------------------------------- /examples/readme/modules/nix-lang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/modules/nix-lang.md -------------------------------------------------------------------------------- /examples/readme/modules/share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/modules/share.md -------------------------------------------------------------------------------- /examples/readme/seeAlso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/seeAlso.md -------------------------------------------------------------------------------- /examples/readme/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/toc.md -------------------------------------------------------------------------------- /examples/readme/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/readme/todo.md -------------------------------------------------------------------------------- /examples/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/services.nix -------------------------------------------------------------------------------- /examples/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/summary.md -------------------------------------------------------------------------------- /examples/watch.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/watch.nix -------------------------------------------------------------------------------- /examples/world.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/examples/world.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/flake.nix -------------------------------------------------------------------------------- /generated/hello.hcl: -------------------------------------------------------------------------------- 1 | "hello" = "world" -------------------------------------------------------------------------------- /generated/hello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/generated/hello.json -------------------------------------------------------------------------------- /generated/hello.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/generated/hello.toml -------------------------------------------------------------------------------- /generated/hello.txt: -------------------------------------------------------------------------------- 1 | world -------------------------------------------------------------------------------- /generated/hello.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/generated/hello.yaml -------------------------------------------------------------------------------- /generated/interpolation.yaml: -------------------------------------------------------------------------------- 1 | PRJ_ROOT: /home/hugosenari/Code/devshell-files 2 | -------------------------------------------------------------------------------- /modules/alias-complete.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/alias-complete.nix -------------------------------------------------------------------------------- /modules/alias.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/alias.nix -------------------------------------------------------------------------------- /modules/cmds.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/cmds.nix -------------------------------------------------------------------------------- /modules/direnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/direnv.nix -------------------------------------------------------------------------------- /modules/direnvrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/direnvrc -------------------------------------------------------------------------------- /modules/dockerfile.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/dockerfile.nix -------------------------------------------------------------------------------- /modules/dockerfile/directives.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/dockerfile/directives.nix -------------------------------------------------------------------------------- /modules/docs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/docs.nix -------------------------------------------------------------------------------- /modules/docs/asString.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/docs/asString.nix -------------------------------------------------------------------------------- /modules/docs/indentity.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/docs/indentity.nix -------------------------------------------------------------------------------- /modules/docs/markdown.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/docs/markdown.nix -------------------------------------------------------------------------------- /modules/file-format.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/file-format.nix -------------------------------------------------------------------------------- /modules/file-type.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/file-type.nix -------------------------------------------------------------------------------- /modules/files.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/files.nix -------------------------------------------------------------------------------- /modules/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/git.nix -------------------------------------------------------------------------------- /modules/gitignore.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/gitignore.nix -------------------------------------------------------------------------------- /modules/hcl.nix: -------------------------------------------------------------------------------- 1 | import ./file-format.nix "hcl" 2 | -------------------------------------------------------------------------------- /modules/json.nix: -------------------------------------------------------------------------------- 1 | import ./file-format.nix "json" 2 | -------------------------------------------------------------------------------- /modules/mdbook.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/mdbook.nix -------------------------------------------------------------------------------- /modules/nim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/nim.nix -------------------------------------------------------------------------------- /modules/nim/laziness.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/nim/laziness.nim -------------------------------------------------------------------------------- /modules/nuon.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/nuon.nix -------------------------------------------------------------------------------- /modules/nush.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/nush.nix -------------------------------------------------------------------------------- /modules/nushell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/nushell.nix -------------------------------------------------------------------------------- /modules/options-lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/options-lib.nix -------------------------------------------------------------------------------- /modules/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/services.nix -------------------------------------------------------------------------------- /modules/services/bundle.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/services/bundle.nix -------------------------------------------------------------------------------- /modules/services/execline.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/services/execline.nix -------------------------------------------------------------------------------- /modules/services/longrun.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/services/longrun.nix -------------------------------------------------------------------------------- /modules/services/oneshot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/services/oneshot.nix -------------------------------------------------------------------------------- /modules/services/rc-devshell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/services/rc-devshell.nix -------------------------------------------------------------------------------- /modules/services/rc-options.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/services/rc-options.nix -------------------------------------------------------------------------------- /modules/services/rc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/services/rc.nix -------------------------------------------------------------------------------- /modules/services/s6.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/services/s6.nix -------------------------------------------------------------------------------- /modules/services/svcCtl.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/services/svcCtl.fish -------------------------------------------------------------------------------- /modules/spdx.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/spdx.nix -------------------------------------------------------------------------------- /modules/startup.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/startup.nix -------------------------------------------------------------------------------- /modules/text.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/text.nix -------------------------------------------------------------------------------- /modules/toml.nix: -------------------------------------------------------------------------------- 1 | import ./file-format.nix "toml" 2 | -------------------------------------------------------------------------------- /modules/watch/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/watch/default.nix -------------------------------------------------------------------------------- /modules/watch/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/modules/watch/interface.nix -------------------------------------------------------------------------------- /modules/yaml.nix: -------------------------------------------------------------------------------- 1 | import ./file-format.nix "yaml" 2 | -------------------------------------------------------------------------------- /project.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/project.nix -------------------------------------------------------------------------------- /templates/default/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/templates/default/flake.nix -------------------------------------------------------------------------------- /templates/default/project.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruel-intentions/devshell-files/HEAD/templates/default/project.nix --------------------------------------------------------------------------------