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 let
vars = import ./vars.nix; vars = import ./vars.nix;
in in
@@ -18,12 +18,14 @@ in
./services.nix ./services.nix
]; ];
boot.zfs.extraPools = [ boot = {
"media" zfs.extraPools = [
"storage" "media"
"torrenting" "storage"
]; "torrenting"
];
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
};
services = { services = {
openssh.ports = [ 629 ]; openssh.ports = [ 629 ];

View File

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