Compare commits
3 Commits
23d71b3a09
...
8796f36a68
| Author | SHA1 | Date | |
|---|---|---|---|
| 8796f36a68 | |||
| 4caddc6959 | |||
| 9263d2752f |
23
home-manager/features/development/vscode.nix
Normal file
23
home-manager/features/development/vscode.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
asvetliakov.vscode-neovim
|
||||
github.copilot
|
||||
enkia.tokyo-night
|
||||
eamodio.gitlens
|
||||
mechatroner.rainbow-csv
|
||||
|
||||
(pkgs.vscode-utils.extensionFromVscodeMarketplace
|
||||
{
|
||||
name = "vscode-augment";
|
||||
publisher = "augment";
|
||||
version = "0.442.0";
|
||||
sha256 = "sha256-TzoafGCmaOEOUHh3XWPrLe/ysICviaOJcpMVqWY/Nr4=";
|
||||
}
|
||||
)
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
return {
|
||||
"augmentcode/augment.vim",
|
||||
enable = false,
|
||||
enable = true,
|
||||
}
|
||||
|
||||
@@ -3,7 +3,10 @@
|
||||
virtualisation = {
|
||||
docker = {
|
||||
enable = true;
|
||||
rootless.enable = true;
|
||||
rootless = {
|
||||
enable = true;
|
||||
setSocketVariable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"/features/development/haskell.nix"
|
||||
"/features/development/markdown.nix"
|
||||
"/features/development/typescript.nix"
|
||||
"/features/development/vscode.nix"
|
||||
"/features/eww"
|
||||
"/features/linux-desktop.nix"
|
||||
"/features/notes.nix"
|
||||
|
||||
Reference in New Issue
Block a user