summaryrefslogtreecommitdiff
path: root/nix/dev/shell.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-04-21 19:49:14 +0000
committerGitHub <[email protected]>2024-04-21 19:49:14 +0000
commitf6e1aa350d6b23a4ffb63fc859c89b79ec6ce8d0 (patch)
treea1c8940feba0f2922cc18a958594c12b622e5efd /nix/dev/shell.nix
parentae1dc52060791990f994df6ecfd4960e6ff3fe5c (diff)
nix: remove subflake (#174)
Diffstat (limited to 'nix/dev/shell.nix')
-rw-r--r--nix/dev/shell.nix45
1 files changed, 0 insertions, 45 deletions
diff --git a/nix/dev/shell.nix b/nix/dev/shell.nix
deleted file mode 100644
index c5589ef..0000000
--- a/nix/dev/shell.nix
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- perSystem = {
- config,
- pkgs,
- self',
- teawiebot',
- ...
- }: {
- devShells = {
- default = pkgs.mkShell {
- packages = [
- # rust tools
- pkgs.clippy
- pkgs.rustfmt
- pkgs.rust-analyzer
-
- # nix tools
- pkgs.deadnix
- pkgs.nil
- pkgs.statix
-
- # misc formatter/linters
- pkgs.actionlint
- self'.formatter
-
- config.procfiles.daemons.package
- ];
-
- inputsFrom = [teawiebot'.packages.teawiebot];
- RUST_SRC_PATH = "${pkgs.rustPlatform.rustLibSrc}";
- };
-
- ci = pkgs.mkShell {
- packages = [
- pkgs.clippy
- pkgs.rustfmt
-
- self'.formatter
- ];
-
- inputsFrom = [teawiebot'.packages.teawiebot];
- };
- };
- };
-}