added zfs kernelPackages restriction

This commit is contained in:
2024-09-15 12:28:09 -04:00
parent d8d5d425db
commit eb16e67c72
2 changed files with 10 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ config, pkgs, ... }:
let
vars = import ./vars.nix;
in
@@ -18,12 +18,14 @@ in
./services.nix
];
boot.zfs.extraPools = [
"media"
"storage"
"torrenting"
];
boot = {
zfs.extraPools = [
"media"
"storage"
"torrenting"
];
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
};
services = {
openssh.ports = [ 629 ];

View File

@@ -11,7 +11,7 @@
dynamicForwards = [ { port = 9050; } ];
};
unlock-jeeves = {
hostname = "192.168.90.14";
hostname = "192.168.95.14";
user = "root";
identityFile = "~/.ssh/id_ed25519";
port = 2222;