Shell works, also different thing, but cannot rebuild.

This commit is contained in:
2025-11-17 22:27:27 +02:00
parent 1824e5cee8
commit 8c14f0bfbb
9 changed files with 52 additions and 11 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
{pkgs} @ args: {
debugTex = import ./debugTex args;
#TODO since I do not pass along packages, this cannot work
# debugTex = import ./debugTex args;
default = import ./defaultShell.nix args;
}
+15
View File
@@ -0,0 +1,15 @@
{pkgs} @ args:
pkgs.mkShell {
buildInputs = with pkgs; [
( pkgs.writeShellScriptBin
"azos-lauretta-update"
"sudo nixos-rebuild switch --flake '.?submodules=1#lauretta'" )
( pkgs.writeShellScriptBin
"azos-update-azos-core"
"nix flake lock --update-input azos-core" )
( pkgs.writeShellScriptBin
"azos-update"
"nix flake update" )
];
}