diff options
Diffstat (limited to 'hosts/richese/default.nix')
-rw-r--r-- | hosts/richese/default.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/hosts/richese/default.nix b/hosts/richese/default.nix index 5d9e2fc..cf42235 100644 --- a/hosts/richese/default.nix +++ b/hosts/richese/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.grub.enable = true; supportedFilesystems = [ "zfs" ]; zfs = { @@ -10,9 +10,9 @@ }; }; - environment.systemPackages = with pkgs; [ - git-review - master.openstackclient-full + environment.systemPackages = [ + pkgs.git-review + pkgs.openstackclient-full ]; imports = [ @@ -57,6 +57,7 @@ secrets = { "nix-access-token-github" = {}; + "ssh_config".path = "/root/.ssh/config"; }; }; |