From 95e9586d4ce0126f77d855b6946b49612f37705e Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Mon, 7 Jul 2025 20:47:10 +0200 Subject: [PATCH] flake: drop devshell --- .envrc | 4 ---- flake.nix | 6 ------ shell.nix | 21 --------------------- 3 files changed, 31 deletions(-) delete mode 100644 .envrc delete mode 100644 shell.nix diff --git a/.envrc b/.envrc deleted file mode 100644 index 1e00ebb..0000000 --- a/.envrc +++ /dev/null @@ -1,4 +0,0 @@ -watch_file flake.nix - -use flake - diff --git a/flake.nix b/flake.nix index 934f6ba..86c0436 100644 --- a/flake.nix +++ b/flake.nix @@ -7,12 +7,6 @@ in { nixosConfigurations = import ./hosts inputs; - devShells = - lib.mapAttrs (system: pkgs: { - default = pkgs.callPackage ./shell.nix {}; - }) - pkgsFor; - formatter = eachSystem (system: pkgsFor.${system}.alejandra); packages = diff --git a/shell.nix b/shell.nix deleted file mode 100644 index c54b63d..0000000 --- a/shell.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ - mkShellNoCC, - git, - writeShellApplication, -}: -mkShellNoCC { - name = "nichts"; - - DIRENV_LOG_FORMAT = ""; - - packages = [ - git # take a guess - - (writeShellApplication { - name = "update"; - text = '' - nix flake update && git commit flake.lock -m "flake: bump inputs" - ''; - }) - ]; -}