diff --git a/flake.lock b/flake.lock index 3e7cb6a..e678e28 100644 --- a/flake.lock +++ b/flake.lock @@ -36,6 +36,24 @@ "type": "github" } }, + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "home-manager": { "inputs": { "nixpkgs": [ @@ -56,6 +74,25 @@ "type": "github" } }, + "lazyvim": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1775153946, + "narHash": "sha256-qwscL94rENDe301j33QLotuI8+a8QgmBw3I2ir9fKZU=", + "owner": "pfassina", + "repo": "lazyvim-nix", + "rev": "c1c27d9b3fd74d243a34985c5440a14aa0c2a169", + "type": "github" + }, + "original": { + "owner": "pfassina", + "repo": "lazyvim-nix", + "type": "github" + } + }, "nix-darwin": { "inputs": { "nixpkgs": [ @@ -98,6 +135,22 @@ } }, "nixpkgs": { + "locked": { + "lastModified": 1752480373, + "narHash": "sha256-JHQbm+OcGp32wAsXTE/FLYGNpb+4GLi5oTvCxwSoBOA=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "62e0f05ede1da0d54515d4ea8ce9c733f12d9f08", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_2": { "locked": { "lastModified": 1775710090, "narHash": "sha256-ar3rofg+awPB8QXDaFJhJ2jJhu+KqN/PRCXeyuXR76E=", @@ -117,9 +170,10 @@ "inputs": { "catppuccin": "catppuccin", "home-manager": "home-manager", + "lazyvim": "lazyvim", "nix-darwin": "nix-darwin", "nixos-wsl": "nixos-wsl", - "nixpkgs": "nixpkgs", + "nixpkgs": "nixpkgs_2", "sops-nix": "sops-nix" } }, @@ -142,6 +196,21 @@ "repo": "sops-nix", "type": "github" } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } } }, "root": "root", diff --git a/home/dev/neovim.nix b/home/dev/neovim.nix index d180ef3..baa9889 100644 --- a/home/dev/neovim.nix +++ b/home/dev/neovim.nix @@ -26,8 +26,15 @@ plugins = { colorscheme = '' return { - "catppuccin/nvim", - opts = { flavour = "mocha" }, + { + "catppuccin/nvim", + name = "catppuccin", + opts = { flavour = "mocha" }, + }, + { + "LazyVim/LazyVim", + opts = { colorscheme = "catppuccin" }, + }, } ''; };