Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 61ba8a8c85365ac8effbb1690d9eddbce9d11d3b 7 lines 202 B view raw
1{ pkgs ? import <nixos-unstable> { } }: 2pkgs.mkShell { 3 packages = with pkgs; [ nil lua-language-server nixpkgs-fmt ]; 4 shellHook = '' 5 ${(import ./default.nix).pre-commit-check.shellHook} 6 ''; 7}