Update deps
This commit is contained in:
parent
b30f12fd45
commit
a54452b9e4
4 changed files with 22 additions and 17 deletions
12
flake.lock
12
flake.lock
|
@ -132,11 +132,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1689793660,
|
||||
"narHash": "sha256-aPGhep6kAcFFbHQWf4pWZHcxf7osGtznEmyCjgAJ+iY=",
|
||||
"lastModified": 1689943059,
|
||||
"narHash": "sha256-DXBCl0n4yLwY8OmrZDFWD3vxyzs2tSAv+iu1h6vebOA=",
|
||||
"owner": "nix-community",
|
||||
"repo": "disko",
|
||||
"rev": "774ce7df25538bd73a8d456e0828907fa6b62572",
|
||||
"rev": "f2248036d2aeb61690903130458b4e7f975b1c78",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -465,11 +465,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1689844446,
|
||||
"narHash": "sha256-ud/6XYWbXFAJuTTApWyYlFtlc54NAxChS1T9Ns+qT7M=",
|
||||
"lastModified": 1689935543,
|
||||
"narHash": "sha256-6GQ9ib4dA/r1leC5VUpsBo0BmDvNxLjKrX1iyL+h8mc=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "2d82894fa1e2d23a22f40275a78bfbb09b92ffde",
|
||||
"rev": "e43e2448161c0a2c4928abec4e16eae1516571bc",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
(fn remove-option [opts removeable]
|
||||
(let [new-opts []]
|
||||
(each [i v (ipairs opts)]
|
||||
(each [_ v (ipairs opts)]
|
||||
(when (not= v removeable) (table.insert new-opts v)))
|
||||
new-opts))
|
||||
|
||||
|
|
|
@ -151,12 +151,12 @@ in
|
|||
};
|
||||
telescope-nvim = buildVimPluginFrom2Nix {
|
||||
pname = "telescope.nvim";
|
||||
version = "2023-07-17";
|
||||
version = "2023-07-21";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-telescope";
|
||||
repo = "telescope.nvim";
|
||||
rev = "47c755d737702df7a39b640c8d9c473a728be1df";
|
||||
sha256 = "0k81q31y3r4kcaxrxami1f8ms4zn8ai61rvqhrlz5yvn4rcplnhy";
|
||||
rev = "597a3cc889c1d16dc38ae4c61f9b542d5258815f";
|
||||
sha256 = "1c0im3hw69mw55lrl9h7snfmjflpf3n7237bs90pmx88nxyvgvrk";
|
||||
fetchSubmodules = false;
|
||||
};
|
||||
};
|
||||
|
@ -268,8 +268,8 @@ in
|
|||
src = fetchFromGitHub {
|
||||
owner = "SmiteshP";
|
||||
repo = "nvim-navic";
|
||||
rev = "f30449ca11321cc6dc3634774f04b0c665756d2f";
|
||||
sha256 = "0sh82p52ilzd2f71khl2q8zxclm415d8x733rxj82h6mi8rda2m6";
|
||||
rev = "9c89730da6a05acfeb6a197e212dfadf5aa60ca0";
|
||||
sha256 = "1ginwysk4apjx2f045isidnzw863zrv272bdmzh247vi5za57c1k";
|
||||
fetchSubmodules = false;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -34,11 +34,16 @@ in
|
|||
|
||||
{
|
||||
nixpkgs = nixpkgsConfig;
|
||||
nix.nixPath = [ "nixpkgs=${nixpkgs}" ];
|
||||
nix.registry.nixpkgs.flake = nixpkgs;
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.daniel = import ../../home/hosts/Styx.nix;
|
||||
nix = {
|
||||
nixPath = [ "nixpkgs=${nixpkgs}" ];
|
||||
registry.nixpkgs.flake = nixpkgs;
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
users.daniel = import ../../home/hosts/Styx.nix;
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue