aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/kaitain/default.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hosts/kaitain/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/hosts/kaitain/default.nix b/hosts/kaitain/default.nix
index 9a222be..76a7424 100644
--- a/hosts/kaitain/default.nix
+++ b/hosts/kaitain/default.nix
@@ -1,7 +1,7 @@
{ config, inputs, lib, outputs, pkgs, ... }: {
boot = {
initrd.kernelModules = [ "zfs" ];
- kernelPackages = pkgs.linuxPackages_6_12;
+ kernelPackages = pkgs.master.linuxPackages_6_15;
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
@@ -10,12 +10,12 @@
supportedFilesystems = [ "zfs" ];
zfs = {
devNodes = "/dev/disk/by-label";
- #package = pkgs.master.zfs;
+ package = pkgs.master.zfs;
};
};
- environment.systemPackages = with pkgs; [
- git-review
+ environment.systemPackages = [
+ pkgs.git-review
];
imports = [
@@ -60,6 +60,7 @@
secrets = {
"nix-access-token-github" = {};
+ "ssh_config".path = "/root/.ssh/config";
};
};