Compare commits
3 Commits
f544ea67fe
...
f258504147
| Author | SHA1 | Date | |
|---|---|---|---|
| f258504147 | |||
| b57a2c6c6f | |||
| 7af9e4d4b2 |
24
flake.lock
generated
24
flake.lock
generated
@@ -214,11 +214,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1748455938,
|
"lastModified": 1748570847,
|
||||||
"narHash": "sha256-mQ/iNzPra2WtDQ+x2r5IadcWNr0m3uHvLMzJkXKAG/8=",
|
"narHash": "sha256-XU1a6wFctd+s3ZvBIFB6s4GhPJ+Oc6pkeOrEsbA2fMo=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "02077149e2921014511dac2729ae6dadb4ec50e2",
|
"rev": "4e9efaa68b0be7e19127dad4f0506a9b89e28ef4",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -305,11 +305,11 @@
|
|||||||
"systems": "systems"
|
"systems": "systems"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1748393846,
|
"lastModified": 1748566610,
|
||||||
"narHash": "sha256-cfth1h/LUYLASwG37edvkxVCpySP333ZS46ELdy+SYc=",
|
"narHash": "sha256-kchdzoDpFzngPZDrCnntPcFSX4E6WrkJ3gE2zJB3dpI=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "nix4vscode",
|
"repo": "nix4vscode",
|
||||||
"rev": "dc2260f37f016caf1e764bb0bfbf43f38ba51aec",
|
"rev": "f6d9cffb83b6a713400cbc8c3291e29eaad85aa5",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -368,11 +368,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs-stable": {
|
"nixpkgs-stable": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1748037224,
|
"lastModified": 1748421225,
|
||||||
"narHash": "sha256-92vihpZr6dwEMV6g98M5kHZIttrWahb9iRPBm1atcPk=",
|
"narHash": "sha256-XXILOc80tvlvEQgYpYFnze8MkQQmp3eQxFbTzb3m/R0=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "f09dede81861f3a83f7f06641ead34f02f37597f",
|
"rev": "78add7b7abb61689e34fc23070a8f55e1d26185b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -545,11 +545,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1748436066,
|
"lastModified": 1748574694,
|
||||||
"narHash": "sha256-smVwlauRs/j/mlxYfEqncNg1tvxAlkC/taw1+pJHtWw=",
|
"narHash": "sha256-VZFWDs3sBj9tXJsSAVJplzfzGYya7HVdOrzyMH/zPPo=",
|
||||||
"owner": "0xc000022070",
|
"owner": "0xc000022070",
|
||||||
"repo": "zen-browser-flake",
|
"repo": "zen-browser-flake",
|
||||||
"rev": "f39ee486e6a14fc30c4e7d00bf389046640c2f63",
|
"rev": "52cda0df1e094cbd8b0699d1cb6386beaffb4863",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -12,13 +12,14 @@
|
|||||||
package = pkgs.vscodium;
|
package = pkgs.vscodium;
|
||||||
enableUpdateCheck = false; # Disable VSCode self-update and let Home Manager to manage VSCode versions instead.
|
enableUpdateCheck = false; # Disable VSCode self-update and let Home Manager to manage VSCode versions instead.
|
||||||
enableExtensionUpdateCheck = false; # Disable extensions auto-update and let nix4vscode manage updates and extensions
|
enableExtensionUpdateCheck = false; # Disable extensions auto-update and let nix4vscode manage updates and extensions
|
||||||
|
mutableExtensionsDir = false;
|
||||||
# Extensions
|
# Extensions
|
||||||
extensions = pkgs.nix4vscode.forVscode [
|
extensions = pkgs.nix4vscode.forVscode [
|
||||||
# General extensions
|
# General extensions
|
||||||
|
|
||||||
## Code Completion
|
## Code Completion
|
||||||
"continue.continue"
|
"continue.continue"
|
||||||
#rooveterinaryinc.roo-cline
|
"rooveterinaryinc.roo-cline"
|
||||||
|
|
||||||
## Development Environment
|
## Development Environment
|
||||||
"ms-toolsai.jupyter"
|
"ms-toolsai.jupyter"
|
||||||
|
|||||||
@@ -22,6 +22,18 @@
|
|||||||
# };
|
# };
|
||||||
overlays = [
|
overlays = [
|
||||||
inputs.nix4vscode.overlays.forVscode
|
inputs.nix4vscode.overlays.forVscode
|
||||||
|
(self: super: {
|
||||||
|
vscodium =
|
||||||
|
super.vscodium.overrideAttrs (oldAttrs: rec {
|
||||||
|
nativeBuildInputs = oldAttrs.nativeBuildInputs or [] ++ [self.makeWrapper];
|
||||||
|
postInstall =
|
||||||
|
oldAttrs.postInstall
|
||||||
|
or ""
|
||||||
|
+ ''
|
||||||
|
wrapProgram $out/bin/codium --set LD_LIBRARY_PATH "${self.stdenv.cc.cc.lib}/lib/"
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user