diff --git a/system/Ronin.nix b/system/Ronin.nix index 2d294c29..71f8fab9 100644 --- a/system/Ronin.nix +++ b/system/Ronin.nix @@ -20,7 +20,8 @@ systemPackages = with pkgs; [ openfortivpn ]; }; services = { - samba.enable = true; hardware.bolt.enable = true; + samba.enable = true; + ollama.enable = true; }; } diff --git a/system/Tone.nix b/system/Tone.nix index 79b55edf..ead05c5e 100644 --- a/system/Tone.nix +++ b/system/Tone.nix @@ -25,4 +25,5 @@ samba ]; }; + services.samba.enable = true; } diff --git a/system/Vanguard.nix b/system/Vanguard.nix index edd987c3..f4f9c73a 100644 --- a/system/Vanguard.nix +++ b/system/Vanguard.nix @@ -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"; + }; }