Geoffrey Frogeye
7e49ed2e19
This was a fix attempt before I discovered that the issue was that nixos-install uses the root user's channels. Doesn't hurt anyways.
17 lines
596 B
Nix
17 lines
596 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
imports = [
|
|
# First commit before 23.05 release date:
|
|
"${builtins.fetchTarball "https://github.com/NixOS/nixos-hardware/archive/468a7a108108908c7a35d6549f1e1f0236a9448a.tar.gz"}/pine64/pinebook-pro"
|
|
./os/loader.nix
|
|
];
|
|
# nixos-hardware use latest kernel by default. This obviously runs quickly out of sync with zfs packages.
|
|
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
|
|
|
networking.hostName = "pindakaas";
|
|
|
|
frogeye.extra = false; # FIXME Not working yet
|
|
frogeye.desktop.xorg = true;
|
|
frogeye.dev.docker = true;
|
|
}
|