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" - ''; - }) - ]; -}