diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-14 14:53:36 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-14 14:53:36 +0100 |
commit | 73da472c0462b947c752753574f0564c22b62d30 (patch) | |
tree | f07b0d1ea3ec0be6ff409a0223d3db445dbe0e71 /flake/nixosConfigurations | |
parent | feat(modules/yt): Migrate to by-name and add new `description` msgs (diff) | |
download | nixos-config-73da472c0462b947c752753574f0564c22b62d30.tar.gz nixos-config-73da472c0462b947c752753574f0564c22b62d30.zip |
fix(flake/nixosConfigurations/common): Disable ollama by default
My machines are not good enough to actually run relevant modules.
Diffstat (limited to '')
-rw-r--r-- | flake/nixosConfigurations/common.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flake/nixosConfigurations/common.nix b/flake/nixosConfigurations/common.nix index 56e39ab2..90ee9920 100644 --- a/flake/nixosConfigurations/common.nix +++ b/flake/nixosConfigurations/common.nix @@ -1,5 +1,5 @@ # This file contains common configuration applied to every host. -# It should only `enable` options defined in the `modules` directory. +# It should only `enable` options defined in the `modules/by-name` directory. { config, pkgs, @@ -50,7 +50,7 @@ beetsPkg = config.home-manager.users.soispha.programs.beets.package; }; }; - ollama.enable = true; + ollama.enable = false; postgresql.enable = false; printing.enable = true; scanning.enable = true; |