28 lines
516 B
Nix
28 lines
516 B
Nix
{ 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
|
|
];
|
|
};
|
|
};
|
|
}
|