lol

nixos/docker-image: clean up let-in binding

figsoda ca6c2c21 8c88a47a

+5 -6
+5 -6
nixos/modules/profiles/docker-container.nix
··· 1 1 { config, lib, pkgs, ... }: 2 2 3 - with lib; 3 + let 4 + inherit (pkgs) writeScript; 4 5 5 - let inherit (pkgs) writeScript; in 6 + pkgs2storeContents = map (x: { object = x; symlink = "none"; }); 7 + in 6 8 7 - let 8 - pkgs2storeContents = l : map (x: { object = x; symlink = "none"; }) l; 9 - 10 - in { 9 + { 11 10 # Docker image config. 12 11 imports = [ 13 12 ../installer/cd-dvd/channel.nix