mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
added nix-shell compatibility
This commit is contained in:
parent
b6db2c98b6
commit
35a736c5de
2 changed files with 9 additions and 5 deletions
|
|
@ -80,10 +80,6 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
devShells.${system}.default = with pkgs; mkShell {
|
devShells.${system}.default = pkgs.callPackage ./shell.nix {};
|
||||||
packages = [
|
|
||||||
just
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
8
shell.nix
Normal file
8
shell.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
|
|
||||||
|
with pkgs;
|
||||||
|
mkShell {
|
||||||
|
packages = [
|
||||||
|
just
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue