diff options
Diffstat (limited to 'hosts/kaitain')
-rw-r--r-- | hosts/kaitain/default.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/hosts/kaitain/default.nix b/hosts/kaitain/default.nix index 706bb57..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; @@ -14,8 +14,8 @@ }; }; - 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"; }; }; |