This commit is contained in:
iFargle 2024-01-05 18:54:56 +09:00
parent c93e9485f4
commit 944efe23ad
2 changed files with 5 additions and 0 deletions

View file

@ -1,6 +1,7 @@
{ inputs, config, lib, pkgs, modulesPath, desktop, username, platform, ... }: {
imports = [
./disks.nix
./ollama.nixzs
../../common/modules/secureboot.nix
../../common/modules/ssh-luks.nix
../../common/services/openrazer.nix

View file

@ -0,0 +1,4 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ ollama ];
networking.firewall.allowedTCPPorts = [ 11434 ];
}