Remove nnn repo as flake input

This commit is contained in:
Evie Litherland-Smith 2023-10-25 07:53:07 +01:00
parent 5c89d80bbd
commit 84c19b44df
3 changed files with 2 additions and 23 deletions

View file

@ -554,18 +554,6 @@
"type": "github"
}
},
"nnn": {
"flake": false,
"locked": {
"narHash": "sha256-6x0Oo5bAVzr+ROIE7U0OzwgYLzHPVWtcD8Ozj36bDNc=",
"type": "file",
"url": "https://github.com/jarun/nnn.git"
},
"original": {
"type": "file",
"url": "https://github.com/jarun/nnn.git"
}
},
"nosys": {
"locked": {
"lastModified": 1668010795,
@ -695,7 +683,6 @@
"home-manager": "home-manager",
"nix-index-database": "nix-index-database",
"nixpkgs": "nixpkgs",
"nnn": "nnn",
"stylix": "stylix",
"tokyonight-folke": "tokyonight-folke",
"watershot": "watershot"

View file

@ -33,10 +33,6 @@
url = "github:folke/tokyonight.nvim";
flake = false;
};
nnn = {
url = "https://github.com/jarun/nnn.git";
flake = false;
};
};
outputs =
@ -78,7 +74,7 @@
inherit (inputs) anyrun watershot;
};
extraSpecialArgs = specialArgs // {
inherit (inputs) crafted-emacs tokyonight-folke nnn;
inherit (inputs) crafted-emacs tokyonight-folke;
};
in nixpkgs.lib.nixosSystem {
inherit system specialArgs;

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, nnn, ... }:
{ config, lib, pkgs, ... }:
{
programs.nnn = {
@ -12,9 +12,5 @@
o = "~/Org";
P = "~/Projects";
};
plugins = {
src = "${nnn}/plugins";
mappings = { };
};
};
}