feat(jeeves): enable x86-64 v2 and v3 system features #73

Merged
Richie merged 1 commits from feature/jeeves-cpu-targets into main 2026-09-08 20:08:50 -04:00
Showing only changes of commit a59ccd293d - Show all commits
+5 -1
View File
@@ -1,4 +1,4 @@
{ inputs, ... }: { inputs, lib, ... }:
let let
vars = import ./vars.nix; vars = import ./vars.nix;
in in
@@ -25,6 +25,10 @@ in
./runners ./runners
./syncthing.nix ./syncthing.nix
]; ];
nix.settings.system-features = lib.mkAfter [
"gccarch-x86-64-v2"
"gccarch-x86-64-v3"
];
services = { services = {
openssh.ports = [ 629 ]; openssh.ports = [ 629 ];