Generate flake.nix from module options. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ dendrix.oeiuwq.com/Dendritic.html
dendritic nix inputs

Move from `pkgs.system` to `pkgs.stdenv.hostPlatform.system` (#51)

authored by oeiuwq.com and committed by

GitHub 801df19f ea470406

+3 -3
+1 -1
dev/modules/regen.nix
··· 3 3 perSystem = 4 4 { pkgs, ... }: 5 5 let 6 - exe = name: pkgs.lib.getExe inputs.self.packages.${pkgs.system}.${name}; 6 + exe = name: pkgs.lib.getExe inputs.self.packages.${pkgs.stdenv.hostPlatform.system}.${name}; 7 7 puke = exe "puke"; 8 8 oneach = exe "oneach"; 9 9 each = exe "each";
+1 -1
modules/prune-lock/allfollow.nix
··· 6 6 pkgs: 7 7 pkgs.writeShellApplication { 8 8 name = "allfollow"; 9 - runtimeInputs = [ inputs.allfollow.packages.${pkgs.system}.default ]; 9 + runtimeInputs = [ inputs.allfollow.packages.${pkgs.stdenv.hostPlatform.system}.default ]; 10 10 text = '' 11 11 allfollow prune --pretty "$1" -o "$2" 12 12 '';
+1 -1
modules/prune-lock/nix-auto-follow.nix
··· 10 10 pkgs: 11 11 pkgs.writeShellApplication { 12 12 name = "nix-auto-follow"; 13 - runtimeInputs = [ inputs.nix-auto-follow.packages.${pkgs.system}.default ]; 13 + runtimeInputs = [ inputs.nix-auto-follow.packages.${pkgs.stdenv.hostPlatform.system}.default ]; 14 14 text = '' 15 15 auto-follow "$1" > "$2" 16 16 '';