switch to unstable packages and do some more nixvim'ing

This commit is contained in:
Markus Heurung 2024-03-15 13:51:34 +01:00
parent 049525be56
commit 6427cf36d8
3 changed files with 142 additions and 111 deletions

View file

@ -2,13 +2,14 @@
description = "Home Manager configuration of muhh";
inputs = {
nixpkgs.url = "nixpkgs/nixos-23.11";
nixpkgs.url = "nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/release-23.11";
# url = "github:nix-community/home-manager/release-23.11";
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
nixvim = {
url = "github:nix-community/nixvim/nixos-23.11";
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
};
@ -17,6 +18,7 @@
self,
nixpkgs,
home-manager,
nixvim,
...
} @ inputs: let
inherit (self) outputs;