my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
9
fork

Configure Feed

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

justfile: fix errors

isabel 3d016307 5a14bee0

+4 -17
+3 -3
justfile
··· 24 24 [group('rebuild')] 25 25 deploy host *args: 26 26 #!/usr/bin/env bash 27 - before=$(ssh host 'readlink -f /run/current-system') 27 + before=$(ssh {{ host }} 'readlink -f /run/current-system') 28 28 before=$(echo "$before" | tail -n 1) 29 - just builder "switch" "--target-host " + host "--use-substitutes " + args) 29 + just builder "switch" "--target-host " + {{ host }} "--use-substitutes " + {{ args }}) 30 30 ssh {{ host }} 'lix-diff "$before" /run/current-system' 31 31 32 32 [group('rebuild')] ··· 50 50 switch *args: 51 51 #!/usr/bin/env bash 52 52 before="$(readlink -f /run/current-system)" 53 - just builder "switch" args 53 + just builder "switch" {{ args }} 54 54 lix-diff "$before" /run/current-system 55 55 56 56 [group('rebuild')]
+1 -14
modules/base/nix/plugins.nix
··· 1 + { pkgs, ... }: 1 2 { 2 - lib, 3 - pkgs, 4 - config, 5 - ... 6 - }: 7 - 8 - lib.mkIf config.garden.profiles.workstation.enable { 9 3 garden.packages = { 10 4 inherit (pkgs) lix-diff; 11 5 }; 12 - 13 - # nix.settings = { 14 - # # all this work to get some extra maths functions because i love nix repl 15 - # plugin-files = [ 16 - # (inputs'.tgirlpkgs.packages.lix-math.override { the_lix = config.nix.package; }) 17 - # ]; 18 - # }; 19 6 }