about summary refs log tree commit diff
path: root/utils
AgeCommit message (Collapse)AuthorFilesLines
2020-09-01 Define {builder,fs}.nix for utils.nixWilliam Carroll3-11/+63
Re-export everything from utils.nix.
2020-08-20 Drop support for dir-locals.nix, <nixpkgs>, etc.William Carroll1-6/+0
In the spirit of Marie Kondo, I'm tidying up! TL;DR: - Prefer .envrc `use_nix` and delete all dir-locals.nix files - Remove ~all references to <nixpkgs>, <unstable>, <depot> and prefer referencing each with briefcase.third_party.{pkgs,unstable,depot} - Delete nixBufferFromShell function since I was only using that in dir-locals.nix files
2020-04-05 Add README to //utilsWilliam Carroll1-0/+8
Add a README.md to the //utils directory.
2020-03-27 Drop support for lorriWilliam Carroll1-0/+6
Lorri does not cleanly integrate with my corporate device, which cannot run NixOS. To expose dependencies to Emacs buffers, I will use nix-buffer.el, which reads its values from dir-locals.nix. To easily expose dependencies from my existing shell.nix files into dir-locals.nix, I wrote a Nix utility function.
2020-03-13 Move wrapNonNixProgram to utils moduleWilliam Carroll1-0/+14
Define the wrapNonNixProgram in my Nix utils module.