Remove nnn repo as flake input
This commit is contained in:
parent
5c89d80bbd
commit
84c19b44df
13
flake.lock
13
flake.lock
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 = { };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue