my system configurations ^-^
0
fork

Configure Feed

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

feat(starling): script to run justfile

+13
+1
hosts/starling/default.nix
··· 10 10 in { 11 11 imports = [ 12 12 "${self}/modules/darwin" 13 + ./stars.nix 13 14 ]; 14 15 15 16 networking = {
+12
hosts/starling/stars.nix
··· 1 + { 2 + pkgs, 3 + lib, 4 + ... 5 + }: let 6 + stars = pkgs.writeShellScriptBin "stars" '' 7 + cd ~/Documents/git/flake 8 + ${lib.getExe pkgs.just} starling 9 + ''; 10 + in { 11 + environment.systemPackages = [stars]; 12 + }