iot-backend/nix/shell.nix

41 lines
759 B
Nix
Raw Permalink Normal View History

2023-01-25 12:21:02 +01:00
{self, ...}: system:
with self.pkgs.${system};
mkShell {
name = "Smart Energy Monitor";
2023-01-25 12:21:02 +01:00
nativeBuildInputs =
[
# Development
editorconfig-checker
pre-commit
yaml-language-server
]
++ lib.optionals (pkgs.hostPlatform.system == "x86_64-linux") [
vscodium-fhs
vscode-extensions.marp-team.marp-vscode
2023-01-25 12:21:02 +01:00
]
++ [
# Linter
git
yamllint
# Nix
alejandra
nixUnstable
nil
2023-01-25 12:21:02 +01:00
# Service
mosquitto
# Marp slides
marp-cli
chromium
2023-01-25 12:21:02 +01:00
# Misc
reuse
];
shellHook = ''
${self.checks.${system}.pre-commit-check.shellHook}
'';
allowUnsupportedSystem = true;
2023-01-25 12:21:02 +01:00
}