mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
added zfs kernelPackages restriction
This commit is contained in:
@@ -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 ];
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user