1
0
Fork 0

Update deps

This commit is contained in:
Daniel Kempkens 2023-07-21 17:29:40 +02:00
parent b30f12fd45
commit a54452b9e4
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
4 changed files with 22 additions and 17 deletions

View file

@ -132,11 +132,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1689793660, "lastModified": 1689943059,
"narHash": "sha256-aPGhep6kAcFFbHQWf4pWZHcxf7osGtznEmyCjgAJ+iY=", "narHash": "sha256-DXBCl0n4yLwY8OmrZDFWD3vxyzs2tSAv+iu1h6vebOA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "disko", "repo": "disko",
"rev": "774ce7df25538bd73a8d456e0828907fa6b62572", "rev": "f2248036d2aeb61690903130458b4e7f975b1c78",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -465,11 +465,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1689844446, "lastModified": 1689935543,
"narHash": "sha256-ud/6XYWbXFAJuTTApWyYlFtlc54NAxChS1T9Ns+qT7M=", "narHash": "sha256-6GQ9ib4dA/r1leC5VUpsBo0BmDvNxLjKrX1iyL+h8mc=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2d82894fa1e2d23a22f40275a78bfbb09b92ffde", "rev": "e43e2448161c0a2c4928abec4e16eae1516571bc",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -14,7 +14,7 @@
(fn remove-option [opts removeable] (fn remove-option [opts removeable]
(let [new-opts []] (let [new-opts []]
(each [i v (ipairs opts)] (each [_ v (ipairs opts)]
(when (not= v removeable) (table.insert new-opts v))) (when (not= v removeable) (table.insert new-opts v)))
new-opts)) new-opts))

View file

@ -151,12 +151,12 @@ in
}; };
telescope-nvim = buildVimPluginFrom2Nix { telescope-nvim = buildVimPluginFrom2Nix {
pname = "telescope.nvim"; pname = "telescope.nvim";
version = "2023-07-17"; version = "2023-07-21";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nvim-telescope"; owner = "nvim-telescope";
repo = "telescope.nvim"; repo = "telescope.nvim";
rev = "47c755d737702df7a39b640c8d9c473a728be1df"; rev = "597a3cc889c1d16dc38ae4c61f9b542d5258815f";
sha256 = "0k81q31y3r4kcaxrxami1f8ms4zn8ai61rvqhrlz5yvn4rcplnhy"; sha256 = "1c0im3hw69mw55lrl9h7snfmjflpf3n7237bs90pmx88nxyvgvrk";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -268,8 +268,8 @@ in
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "SmiteshP"; owner = "SmiteshP";
repo = "nvim-navic"; repo = "nvim-navic";
rev = "f30449ca11321cc6dc3634774f04b0c665756d2f"; rev = "9c89730da6a05acfeb6a197e212dfadf5aa60ca0";
sha256 = "0sh82p52ilzd2f71khl2q8zxclm415d8x733rxj82h6mi8rda2m6"; sha256 = "1ginwysk4apjx2f045isidnzw863zrv272bdmzh247vi5za57c1k";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };

View file

@ -34,11 +34,16 @@ in
{ {
nixpkgs = nixpkgsConfig; nixpkgs = nixpkgsConfig;
nix.nixPath = [ "nixpkgs=${nixpkgs}" ]; nix = {
nix.registry.nixpkgs.flake = nixpkgs; nixPath = [ "nixpkgs=${nixpkgs}" ];
home-manager.useGlobalPkgs = true; registry.nixpkgs.flake = nixpkgs;
home-manager.useUserPackages = true; };
home-manager.users.daniel = import ../../home/hosts/Styx.nix;
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users.daniel = import ../../home/hosts/Styx.nix;
};
} }
]; ];
}; };