feat: enable direnv tool and disable ollama service
Enable direnv under the tools configuration with a commented-out git tool. Disable the ollama service, changing its enable flag from true to false.
This commit is contained in:
parent
8629411382
commit
4131d726d5
|
@ -17,7 +17,6 @@
|
||||||
};
|
};
|
||||||
tools = {
|
tools = {
|
||||||
git.enable = true;
|
git.enable = true;
|
||||||
direnv.enable = true;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -46,9 +46,6 @@ in
|
||||||
core = {
|
core = {
|
||||||
whitespace = "trailing-space,space-before-tab";
|
whitespace = "trailing-space,space-before-tab";
|
||||||
};
|
};
|
||||||
safe = {
|
|
||||||
directory = "${user.home}/git";
|
|
||||||
};
|
|
||||||
"credential \"https://github.com\"" = {
|
"credential \"https://github.com\"" = {
|
||||||
helper = "!gh auth git-credential";
|
helper = "!gh auth git-credential";
|
||||||
};
|
};
|
||||||
|
|
|
@ -12,6 +12,10 @@ with lib.metacfg;
|
||||||
podman.enable = true;
|
podman.enable = true;
|
||||||
secureboot.enable = true;
|
secureboot.enable = true;
|
||||||
homeprinter.enable = true;
|
homeprinter.enable = true;
|
||||||
|
tools = {
|
||||||
|
direnv.enable = true;
|
||||||
|
#git.enable = true;
|
||||||
|
};
|
||||||
user.extraGroups = [
|
user.extraGroups = [
|
||||||
"docker"
|
"docker"
|
||||||
"dialout"
|
"dialout"
|
||||||
|
@ -69,7 +73,7 @@ with lib.metacfg;
|
||||||
];
|
];
|
||||||
|
|
||||||
services.ollama = {
|
services.ollama = {
|
||||||
enable = true;
|
enable = false;
|
||||||
acceleration = "rocm";
|
acceleration = "rocm";
|
||||||
environmentVariables = {
|
environmentVariables = {
|
||||||
HSA_OVERRIDE_GFX_VERSION = "10.1.0";
|
HSA_OVERRIDE_GFX_VERSION = "10.1.0";
|
||||||
|
|
Loading…
Reference in a new issue