-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathshell.nix
More file actions
37 lines (34 loc) · 753 Bytes
/
shell.nix
File metadata and controls
37 lines (34 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
config,
pkgs,
inputs',
}:
pkgs.mkShell {
packages =
with pkgs;
[
cachix
git
nix-output-monitor
nvd
]
++ [
config.treefmt.build.wrapper
inputs'.agenix.packages.default
inputs'.deploy.packages.default
inputs'.nixos-anywhere.packages.default
inputs'.disko.packages.default
];
shellHook = ''
git config --local blame.ignoreRevsFile .git-blame-ignore-revs
echo ""
echo "🚀 Welcome to nixfiles devshell"
echo ""
echo "Available tools:"
echo " - agenix: Secret management"
echo " - deploy-rs: Deployment tool"
echo " - nixos-anywhere: Remote NixOS installation"
echo " - disko: Declarative disk partitioning"
echo ""
'';
}