From c16526eabf6f0b7cb8f390a898123d0bf5a92af4 Mon Sep 17 00:00:00 2001 From: TheCrazyInsanity Date: Fri, 30 Jan 2026 17:04:38 -0500 Subject: [PATCH] ya --- machines/homepc/configuration.nix | 8 +++++++- modules/communication/default.nix | 1 + modules/development/default.nix | 5 +++-- modules/gaming/default.nix | 4 ++-- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/machines/homepc/configuration.nix b/machines/homepc/configuration.nix index a841fbe..fd1be82 100755 --- a/machines/homepc/configuration.nix +++ b/machines/homepc/configuration.nix @@ -41,8 +41,14 @@ # This is here because I don't have another computer that could run local AI, and regardless the packages would be different on every one. environment.systemPackages = with pkgs; [ ollama-cuda + opencode ]; + services.ollama = { + enable = true; + package = pkgs.ollama-cuda; + }; + # Set your time zone. # time.timeZone = "Europe/Amsterdam"; @@ -113,7 +119,7 @@ # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ]; # Or disable the firewall altogether. - # networking.firewall.enable = false; + networking.firewall.enable = false; # Copy the NixOS configuration file and link it from the resulting system # (/run/current-system/configuration.nix). This is useful in case you diff --git a/modules/communication/default.nix b/modules/communication/default.nix index 789b68f..a66cd76 100755 --- a/modules/communication/default.nix +++ b/modules/communication/default.nix @@ -5,5 +5,6 @@ jami element-desktop signal-desktop + praat ]; } diff --git a/modules/development/default.nix b/modules/development/default.nix index c824997..0a95718 100755 --- a/modules/development/default.nix +++ b/modules/development/default.nix @@ -1,7 +1,8 @@ -{pkgs, ...}: +{ pkgs, ... }: { environment.systemPackages = with pkgs; [ vscode antigravity # Free Gemini 3 credits was too good of an offer to not take up, even if it requires selling my soul. + chromium ]; -} \ No newline at end of file +} diff --git a/modules/gaming/default.nix b/modules/gaming/default.nix index 45f0aac..81be047 100755 --- a/modules/gaming/default.nix +++ b/modules/gaming/default.nix @@ -1,4 +1,4 @@ -{pkgs, environment, ...}: +{ pkgs, environment, ... }: { programs.steam = { enable = true; @@ -13,4 +13,4 @@ lutris prismlauncher ]; -} \ No newline at end of file +}