split everything into modules and update nixpkgs

This commit is contained in:
aditya
2026-05-14 00:29:17 +05:30
parent 0e2136c3a0
commit cc2380eec1
18 changed files with 270 additions and 81 deletions
+8 -1
View File
@@ -1,4 +1,4 @@
{...}:
{ pkgs, lib, ... }:
{
programs.zed-editor = {
@@ -35,6 +35,13 @@
light = "Crimson Light";
dark = "Crimson Dark";
};
lsp = {
rust-analyzer = {
binary = {
path = lib.getExe pkgs.rust-analyzer;
};
};
};
};
};
}