This commit is contained in:
Sic mundus creatus est 2025-07-18 01:40:21 +02:00
parent 6a95af0656
commit 6447202f7f
11 changed files with 235 additions and 0 deletions

23
shell.nix Normal file
View file

@ -0,0 +1,23 @@
{ pkgs ? import <nixpkgs> {} }:
let
agenixSrc = fetchTarball {
url = "https://github.com/ryantm/agenix/archive/main.tar.gz";
sha256 = "103slb8xy5sb68zxjjbb9d0svq8xz751a7yrg6vrz5rh4374bzgl";
};
in
pkgs.mkShell {
buildInputs = [
(pkgs.callPackage "${agenixSrc}/pkgs/agenix.nix" {})
];
packages = with pkgs; [
deploy-rs
nano
];
EDITOR="nano";
shellHook = ''
echo "Welcome to Federez-LaSuite network deploy-rs shell environment!"
'';
}