Compare commits

..

No commits in common. "528d5da69a915693eb2059d247dca9fb0fbecb89" and "1233d400fde8906a091812c80c62f961f0b81137" have entirely different histories.

3 changed files with 16 additions and 29 deletions

30
flake.lock generated
View File

@ -153,11 +153,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1701394021, "lastModified": 1701307184,
"narHash": "sha256-5ZEIX2Di/x0GAu9xAP+7tcy7hPu39lhLADwt/YR8Wk0=", "narHash": "sha256-nyWkaA82eLOIr96taEN40OegFC9HW3VUMe9U1VIwEpE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nix-vscode-extensions", "repo": "nix-vscode-extensions",
"rev": "d1f015cf54328b5c96a6f9d68f615f18ddac9264", "rev": "dfa26d229c753269091235e1a27d0bb9002cbb66",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -175,11 +175,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1701387264, "lastModified": 1701355528,
"narHash": "sha256-uGZycEJqOZSYvpmoFuyDrboe5e1t0F/HB9r7HsWgssc=", "narHash": "sha256-YHg+XwkTvkEdWJCG0zSxzbPzMhhuNa0GxJb3U51dY1A=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NixOS-WSL", "repo": "NixOS-WSL",
"rev": "1a50ab3fe98934d8f109f05528874c9ab324707b", "rev": "4c358d4bb9aee1267fc476bc37c7683fe2df9231",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -237,11 +237,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1701459859, "lastModified": 1701359478,
"narHash": "sha256-tVEHtlZUEnB3m2PncVCHaBZBHFtZ0c7rKx86OqfstbM=", "narHash": "sha256-CsMkvlne20bT1MEBMCupQAasml/ffcjTNp8GO88F1wU=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "6566d9cb63d2abad2bf136e60e0425ba6caa37b6", "rev": "6b077c8e58ecd06f156a1add6ac0bd88165c9aab",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -270,11 +270,11 @@
"nixpkgs": "nixpkgs_3" "nixpkgs": "nixpkgs_3"
}, },
"locked": { "locked": {
"lastModified": 1701397143, "lastModified": 1701310566,
"narHash": "sha256-nYUJxZXwCWWVBYZXPgRxGDuQcZRhKTtD/Jp5Jl+9EWU=", "narHash": "sha256-CL9J3xUR2Ejni4LysrEGX0IdO+Y4BXCiH/By0lmF3eQ=",
"owner": "oxalica", "owner": "oxalica",
"repo": "rust-overlay", "repo": "rust-overlay",
"rev": "bb71557c93cad40f5921b2342d7fd69f9e6497ab", "rev": "6d3c6e185198b8bf7ad639f22404a75aa9a09bff",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -360,11 +360,11 @@
}, },
"unstable": { "unstable": {
"locked": { "locked": {
"lastModified": 1701253981, "lastModified": 1701068326,
"narHash": "sha256-ztaDIyZ7HrTAfEEUt9AtTDNoCYxUdSd6NrRHaYOIxtk=", "narHash": "sha256-vmMceA+q6hG1yrjb+MP8T0YFDQIrW3bl45e7z24IEts=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e92039b55bcd58469325ded85d4f58dd5a4eaf58", "rev": "8cfef6986adfb599ba379ae53c9f5631ecd2fd9c",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -24,7 +24,6 @@
extensions = ["rust-src"]; extensions = ["rust-src"];
}) })
]; ];
programs.zsh.initExtra = '' programs.zsh.initExtra = ''
export PATH=~/.npm-packages/bin:$PATH export PATH=~/.npm-packages/bin:$PATH
export NODE_PATH=~/.npm-packages/lib/node_modules export NODE_PATH=~/.npm-packages/lib/node_modules
@ -33,15 +32,4 @@
programs.direnv = { programs.direnv = {
enable = true; enable = true;
}; };
# Bun Git config
programs.git = {
attributes = [
"*.lockb binary diff=lockb"
];
extraConfig = {
diff.lockb.textconv = "bun";
diff.lockb.binary = "true";
};
};
} }

View File

@ -158,6 +158,5 @@
}, },
"nix.enableLanguageServer": true, "nix.enableLanguageServer": true,
"nix.serverPath": "nil", "nix.serverPath": "nil",
"workbench.colorTheme": "Min Dark", "workbench.colorTheme": "Min Dark"
"cSpell.userWords": ["typecheck"]
} }