From c86d0d12b927b45af96b86b140a962b97127b6d3 Mon Sep 17 00:00:00 2001 From: maxstrb Date: Mon, 6 Oct 2025 21:32:27 +0200 Subject: [PATCH 1/2] non important commit --- home/modules/shells.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/modules/shells.nix b/home/modules/shells.nix index 2e9e92e..78b522b 100644 --- a/home/modules/shells.nix +++ b/home/modules/shells.nix @@ -103,9 +103,12 @@ cd /home/maxag/.nix-config let commit_message = if $message != null {$message} else {"non important commit"} + git pull + try { git add . git commit -m $commit_message + git push } sudo nixos-rebuild switch --flake . From ccd554ffd81845ad7987ddfa0fed9f5f99a75917 Mon Sep 17 00:00:00 2001 From: maxstrb Date: Mon, 6 Oct 2025 21:42:35 +0200 Subject: [PATCH 2/2] non important commit --- .../project-blueprints/c-sharp/flake.nix | 20 +++++++++++++++++++ home/modules/shells.nix | 3 +-- 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 home/modules/create-project/project-blueprints/c-sharp/flake.nix diff --git a/home/modules/create-project/project-blueprints/c-sharp/flake.nix b/home/modules/create-project/project-blueprints/c-sharp/flake.nix new file mode 100644 index 0000000..444acde --- /dev/null +++ b/home/modules/create-project/project-blueprints/c-sharp/flake.nix @@ -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 + ]; + }; + }; + }; +} diff --git a/home/modules/shells.nix b/home/modules/shells.nix index 78b522b..0d49a87 100644 --- a/home/modules/shells.nix +++ b/home/modules/shells.nix @@ -103,9 +103,8 @@ cd /home/maxag/.nix-config let commit_message = if $message != null {$message} else {"non important commit"} - git pull - try { + git pull git add . git commit -m $commit_message git push