Compare commits

...

2 commits

Author SHA1 Message Date
ccd554ffd8 non important commit 2025-10-06 21:42:35 +02:00
c86d0d12b9 non important commit 2025-10-06 21:32:27 +02:00
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{
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,8 +104,10 @@
let commit_message = if $message != null {$message} else {"non important commit"}
try {
git pull
git add .
git commit -m $commit_message
git push
}
sudo nixos-rebuild switch --flake .