dotfiles/config/nix/pindakaas.nix

16 lines
442 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
2023-10-28 22:09:36 +02:00
{
imports = [
<nixos-hardware/pine64/pinebook-pro>
2023-11-22 00:52:31 +01:00
./os/loader.nix
2023-10-28 22:09:36 +02:00
];
# nixos-hardware use latest kernel by default. This obviously runs quickly out of sync with zfs packages.
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
2023-11-22 14:05:48 +01:00
networking.hostName = "pindakaas";
2023-11-22 16:32:20 +01:00
frogeye.extra = false; # FIXME Not working yet
2023-11-22 14:05:48 +01:00
frogeye.desktop.xorg = true;
2023-11-22 16:32:20 +01:00
frogeye.dev.docker = true;
2023-10-28 22:09:36 +02:00
}