Enable ollama for Vanguard and Ronin

Enable samba service for Tone
This commit is contained in:
Evie Litherland-Smith 2024-10-08 07:13:34 +01:00
parent 87fc2a2db8
commit 5601951859
3 changed files with 7 additions and 2 deletions

View file

@ -20,7 +20,8 @@
systemPackages = with pkgs; [ openfortivpn ];
};
services = {
samba.enable = true;
hardware.bolt.enable = true;
samba.enable = true;
ollama.enable = true;
};
}

View file

@ -25,4 +25,5 @@
samba
];
};
services.samba.enable = true;
}

View file

@ -6,7 +6,6 @@
}:
{
imports = [ ./desktop.nix ];
nixpkgs.config.rocmSupport = true;
environment.sessionVariables.MANGOHUD = 1;
home-manager.users.${username} = {
home.packages = with pkgs; [
@ -82,4 +81,8 @@
capSysNice = true;
};
};
services.ollama = {
enable = true;
acceleration = "rocm";
};
}