programs: drop zed
This commit is contained in:
parent
3080bace28
commit
fc4abfb8ec
2 changed files with 15 additions and 25 deletions
|
@ -85,8 +85,6 @@
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
zedless = {
|
|
||||||
url = "github:zedless-editor/zed";
|
|
||||||
# DetNix is doing too well these days not to use it...
|
# DetNix is doing too well these days not to use it...
|
||||||
determinate = {
|
determinate = {
|
||||||
url = "github:determinatesystems/determinate";
|
url = "github:determinatesystems/determinate";
|
||||||
|
|
|
@ -1,25 +1,19 @@
|
||||||
{
|
{pkgs, ...}: let
|
||||||
inputs,
|
# a newer nil version, for pipes support.
|
||||||
pkgs,
|
newer-nil = pkgs.nil.overrideAttrs (_: {
|
||||||
...
|
version = "unstable-02-06-2025";
|
||||||
}:let
|
|
||||||
|
|
||||||
# a newer nil version, for pipes support.
|
|
||||||
newer-nil = pkgs.nil.overrideAttrs (_: {
|
|
||||||
version = "unstable-02-06-2025";
|
|
||||||
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "oxalica";
|
|
||||||
repo = "nil";
|
|
||||||
rev = "577d160da311cc7f5042038456a0713e9863d09e";
|
|
||||||
hash = "sha256-ggXU3RHv6NgWw+vc+HO4/9n0GPufhTIUjVuLci8Za8c=";
|
|
||||||
};
|
|
||||||
cargoDeps = pkgs.rustPlatform.fetchCargoVendor {
|
|
||||||
inherit (newer-nil) src;
|
|
||||||
hash = "sha256-uZsLlFU9GKLvFllF7Kf5Q7HfN26KQojf4rvOb9p7Rjs=";
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "oxalica";
|
||||||
|
repo = "nil";
|
||||||
|
rev = "577d160da311cc7f5042038456a0713e9863d09e";
|
||||||
|
hash = "sha256-ggXU3RHv6NgWw+vc+HO4/9n0GPufhTIUjVuLci8Za8c=";
|
||||||
|
};
|
||||||
|
cargoDeps = pkgs.rustPlatform.fetchCargoVendor {
|
||||||
|
inherit (newer-nil) src;
|
||||||
|
hash = "sha256-uZsLlFU9GKLvFllF7Kf5Q7HfN26KQojf4rvOb9p7Rjs=";
|
||||||
|
};
|
||||||
|
});
|
||||||
in {
|
in {
|
||||||
environment.systemPackages = builtins.attrValues {
|
environment.systemPackages = builtins.attrValues {
|
||||||
inherit
|
inherit
|
||||||
|
@ -55,7 +49,6 @@ in {
|
||||||
httpie
|
httpie
|
||||||
hyperfine
|
hyperfine
|
||||||
imagemagick
|
imagemagick
|
||||||
img2pdf
|
|
||||||
impala
|
impala
|
||||||
imv
|
imv
|
||||||
inetutils
|
inetutils
|
||||||
|
@ -102,7 +95,6 @@ in {
|
||||||
xournalpp
|
xournalpp
|
||||||
zathura
|
zathura
|
||||||
;
|
;
|
||||||
inherit (inputs.zedless.packages.${pkgs.stdenv.system}) zed-editor;
|
|
||||||
inherit newer-nil;
|
inherit newer-nil;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue