migrate to flake-parts
This commit is contained in:
parent
d79b65169e
commit
51f44277df
12 changed files with 137 additions and 155 deletions
25
devShells/flake-module.nix
Normal file
25
devShells/flake-module.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
perSystem =
|
||||
{
|
||||
inputs',
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
devShells.default = pkgs.mkShellNoCC {
|
||||
packages = [
|
||||
inputs'.agenix.packages.default
|
||||
inputs'.clan-core.packages.clan-cli
|
||||
pkgs.nil # Nix language server
|
||||
pkgs.nixfmt-rfc-style
|
||||
pkgs.opentofu
|
||||
pkgs.terraform-ls
|
||||
pkgs.deploy-rs
|
||||
pkgs.zsh
|
||||
];
|
||||
shellhook = ''
|
||||
exec zsh
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue