treewide: add devShell
Check / Nix flake (push) Successful in 1m20s
Lint / Nix expressions (push) Successful in 54s

This commit is contained in:
2026-04-18 19:23:09 -04:00
parent 22bf60ab6a
commit f23cf934fb
2 changed files with 28 additions and 0 deletions
+1
View File
@@ -38,6 +38,7 @@
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
./nixos
./shells
];
perSystem =
+27
View File
@@ -0,0 +1,27 @@
{ inputs, ... }:
{
perSystem =
{ pkgs, ... }:
{
devShells.default = pkgs.mkShell {
name = "configuration.nix";
packages = with pkgs; [
bat
cachix
deadnix
delta
git
inputs.agenix.packages.${stdenv.hostPlatform.system}.default
jujutsu
neovim
nix-output-monitor
nixfmt
npins
parted
smartmontools
statix
tmux
];
};
};
}