Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-01-14 12:33:21 +00:00
parent b496d81d49
commit c193ff9e5b
6 changed files with 32 additions and 17 deletions

View File

@@ -9,7 +9,7 @@
home-manager.users.${user} = {
programs.go = {
enable = true;
goPath = "${home}/.local/share/go";
goPath = ".local/share/go";
};
home = {

View File

@@ -15,7 +15,7 @@
gradle = {
enable = true;
home = "${home}/.local/share/gradle";
home = ".local/share/gradle";
};
};

View File

@@ -10,10 +10,13 @@
github.copilot-chat
];
userSettings."github.copilot.enable" = {
"*" = true;
"plaintext" = true;
"markdown" = true;
userSettings = {
"github.copilot.enable" = {
"*" = true;
"plaintext" = true;
"markdown" = true;
};
"chat.editing.alwaysSaveWithGeneratedChanges" = true;
};
};
}