Compare commits

..

No commits in common. "ccd554ffd81845ad7987ddfa0fed9f5f99a75917" and "f6721332faaef6c3d1d5b3739267dade717aeac7" have entirely different histories.

2 changed files with 0 additions and 22 deletions

View file

@ -1,20 +0,0 @@
{
description = "My rust development shell";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = {nixpkgs, ...}: let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in {
devShells."${system}" = {
default = pkgs.mkShell {
buildInputs = with pkgs; [
dotnetCorePackages.sdk_9_0-bin
];
};
};
};
}

View file

@ -104,10 +104,8 @@
let commit_message = if $message != null {$message} else {"non important commit"} let commit_message = if $message != null {$message} else {"non important commit"}
try { try {
git pull
git add . git add .
git commit -m $commit_message git commit -m $commit_message
git push
} }
sudo nixos-rebuild switch --flake . sudo nixos-rebuild switch --flake .