feat: switch to nixvim

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2024-09-24 09:35:44 +02:00
parent 07d661f1db
commit 2188eaaa7d
Signed by: lander
GPG key ID: 0142722B4B0C536F
5 changed files with 448 additions and 100 deletions

View file

@ -15,13 +15,15 @@
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
# theme
catppuccin.url = "github:catppuccin/nix";
# Home manager
home-manager.url = "github:nix-community/home-manager/release-24.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nixvim.url = "git+https://codeberg.org/landervdb/nixvim.git";
};
outputs = {
@ -33,10 +35,10 @@
in {
nixosConfigurations = {
wodan = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
specialArgs = {inherit inputs outputs;};
modules = [
./hosts/wodan
];
./hosts/wodan
];
};
};
};