flake: drop devshell

This commit is contained in:
Bloxx12 2025-07-07 20:47:10 +02:00
commit 95e9586d4c
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E
3 changed files with 0 additions and 31 deletions

4
.envrc
View file

@ -1,4 +0,0 @@
watch_file flake.nix
use flake

View file

@ -7,12 +7,6 @@
in { in {
nixosConfigurations = import ./hosts inputs; nixosConfigurations = import ./hosts inputs;
devShells =
lib.mapAttrs (system: pkgs: {
default = pkgs.callPackage ./shell.nix {};
})
pkgsFor;
formatter = eachSystem (system: pkgsFor.${system}.alejandra); formatter = eachSystem (system: pkgsFor.${system}.alejandra);
packages = packages =

View file

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