diff --git a/home/panotaka/common/core/shell/zellij.nix b/home/panotaka/common/core/shell/zellij.nix index 0a9448e..284b61e 100644 --- a/home/panotaka/common/core/shell/zellij.nix +++ b/home/panotaka/common/core/shell/zellij.nix @@ -8,6 +8,7 @@ #simplified_ui = true; pane_frames = false; copy_on_select = false; + show_startup_tips = true; }; }; } diff --git a/hosts/common/optional/services/ollama.nix b/hosts/common/optional/services/ollama.nix new file mode 100644 index 0000000..631748b --- /dev/null +++ b/hosts/common/optional/services/ollama.nix @@ -0,0 +1,16 @@ +# Enable bluetooth +{ + pkgs, + lib, + ... +}: { + services.ollama = { + enable = true; + environmentVariables = { + OLLAMA_INTEL_GPU = "1"; + }; + loadModels = [ + ]; + }; + systemd.services.ollama.serviceConfig.MemoryDenyWriteExecute = lib.mkForce false; +} diff --git a/hosts/nixos/Bellerophon/default.nix b/hosts/nixos/Bellerophon/default.nix index 3e654b8..282e981 100644 --- a/hosts/nixos/Bellerophon/default.nix +++ b/hosts/nixos/Bellerophon/default.nix @@ -61,6 +61,7 @@ # The following are for example sake only and are not necessarily required. #"hosts/common/optional/services/openssh.nix" # allow remote SSH access "hosts/common/optional/services/bluetooth.nix" + "hosts/common/optional/services/ollama.nix" "hosts/common/optional/audio.nix" # pipewire and cli controls "hosts/common/optional/kde.nix" "hosts/common/optional/sddm.nix"