dotfiles/shell.nix

15 lines
327 B
Nix
Raw Permalink Normal View History

2022-05-02 09:59:47 +01:00
(import
(
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
in
2022-12-19 09:09:08 +00:00
fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
}
2022-05-02 09:59:47 +01:00
)
{
src = ./.;
2022-12-19 09:09:08 +00:00
})
.shellNix