nixos/configuration/Tone.nix
Evie Litherland-Smith 29e3c29e3a Enable ollama service for Tone
Enable GPU acceleration for ollama on Vanguard

Remove extra kernel / driver config from Northstar
2024-06-25 10:21:50 +01:00

22 lines
539 B
Nix

{pkgs, ...}: {
imports = [./laptop.nix];
boot.initrd = {
secrets = {"/crypto_keyfile.bin" = null;};
luks.devices."luks-761eeb11-3091-4142-9232-4fb33165eccd" = {
device = "/dev/disk/by-uuid/761eeb11-3091-4142-9232-4fb33165eccd";
keyFile = "/crypto_keyfile.bin";
};
};
environment = {
etc."ppp/options".text = ''
ipcp-accept-remote
'';
systemPackages = with pkgs; [openfortivpn];
};
services = {
ollama.enable = true;
samba.enable = true;
hardware.bolt.enable = true;
};
}