aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/richese/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/richese/default.nix')
-rw-r--r--hosts/richese/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/hosts/richese/default.nix b/hosts/richese/default.nix
index b13925d..ee49bce 100644
--- a/hosts/richese/default.nix
+++ b/hosts/richese/default.nix
@@ -1,12 +1,15 @@
{ config, inputs, lib, outputs, pkgs, ... }: {
boot = {
initrd.kernelModules = [ "zfs" ];
- kernelPackages = pkgs.master.linuxPackages_6_14;
- loader.grub.enable = true;
+ kernelPackages = pkgs.linuxPackages_6_18;
+ loader.grub = {
+ enable = true;
+ memtest86.enable = true;
+ };
supportedFilesystems = [ "zfs" ];
zfs = {
devNodes = "/dev/disk/by-label";
- package = pkgs.master.zfs;
+ package = pkgs.zfs_unstable;
};
};
@@ -49,7 +52,7 @@
};
services.openssh.openFirewall = false;
- services.xserver.videoDrivers = lib.mkForce [ "vmware" "virtualbox" "modesetting" ];
+ services.xserver.videoDrivers = lib.mkForce [ "modesetting" ];
sops = {
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
@@ -57,6 +60,7 @@
secrets = {
"nix-access-token-github" = {};
+ "ssh_config".path = "/root/.ssh/config";
};
};