mirror of
https://gitlab.uni-marburg.de/langbeid/powersort.git
synced 2025-01-21 19:50:35 +01:00
shell.nix: cleanup
This commit is contained in:
parent
2b85e4e956
commit
ef9d8a512e
22
shell.nix
22
shell.nix
@ -5,30 +5,28 @@
|
||||
# https://github.com/NixOS/nixpkgs/issues/166220#issuecomment-1745803058
|
||||
|
||||
{
|
||||
### Import with nix channels ###
|
||||
### Import nixpkgs as channels ###
|
||||
#
|
||||
# NixOS stable
|
||||
# nixpkgs stable
|
||||
#pkgs ? import <nixpkgs> {
|
||||
# # Required for IntelliJ Ultimate
|
||||
# config.allowUnfree = true;
|
||||
#},
|
||||
# NixOS unstable
|
||||
#unstable ? import <unstable> {
|
||||
# config.allowUnfree = true;
|
||||
#}
|
||||
# nixpkgs unstable
|
||||
#unstable ? import <unstable> { }
|
||||
}:
|
||||
|
||||
let
|
||||
### Import with Niv ###
|
||||
### Import nixpkgs with Niv ###
|
||||
#
|
||||
sources = import ./nix/sources.nix;
|
||||
# NixOS stable
|
||||
# nixpkgs stable
|
||||
pkgs = import sources.nixpkgs {
|
||||
# Required for IntelliJ Ultimate
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
# NixOS unstable
|
||||
unstable = import sources.unstable {
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
# nixpkgs unstable
|
||||
unstable = import sources.unstable { };
|
||||
|
||||
jdk = unstable.jdk23;
|
||||
gradle = unstable.gradle.override {
|
||||
|
Loading…
x
Reference in New Issue
Block a user