forked from tuxcord/tuxcord.nix
treewide: add devShell
This commit is contained in:
@@ -38,6 +38,7 @@
|
|||||||
flake-parts.lib.mkFlake { inherit inputs; } {
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
||||||
imports = [
|
imports = [
|
||||||
./nixos
|
./nixos
|
||||||
|
./shells
|
||||||
];
|
];
|
||||||
|
|
||||||
perSystem =
|
perSystem =
|
||||||
|
|||||||
@@ -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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user