configurations for my servers and desktops
nix nixos flake dots dotfiles
at main 18 lines 293 B view raw
1{pkgs, ...}: { 2 networking.hostName = "bluellama"; 3 4 homebrew = { 5 brews = [ 6 { 7 name = "ollama"; 8 restart_service = "changed"; 9 } 10 { 11 name = "tailscale"; 12 restart_service = "changed"; 13 } 14 "podman" 15 "podman-compose" 16 ]; 17 }; 18}