treewide: add devShell

This commit is contained in:
2026-04-18 19:23:09 -04:00
parent c161a0a3d2
commit 2204757976
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
];
};
};
}