init
This commit is contained in:
parent
6a95af0656
commit
6447202f7f
11 changed files with 235 additions and 0 deletions
23
shell.nix
Normal file
23
shell.nix
Normal 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!"
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue