Dendritic Nix - Community-driven Nix distribution based on the Dendritic pattern.
fork

Configure Feed

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

at main 19 lines 295 B view raw
1let 2 path_ = ".envrc"; 3 text = '' 4 use flake path:dev 5 ''; 6 7 file = pkgs: { 8 inherit path_; 9 drv = pkgs.writeText "direnv-envrc" text; 10 }; 11in 12{ 13 perSystem = 14 { pkgs, ... }: 15 { 16 files.files = [ (file pkgs) ]; 17 treefmt.settings.global.excludes = [ path_ ]; 18 }; 19}