Add armv7l kernel patch
This commit is contained in:
parent
19580f878c
commit
049ab1f01f
20
home-manager/hosts/wheatley/armv7l.nix
Normal file
20
home-manager/hosts/wheatley/armv7l.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
boot.kernelPatches = [
|
||||
rec {
|
||||
name = "compat_uts_machine";
|
||||
patch = pkgs.fetchpatch {
|
||||
inherit name;
|
||||
url = "https://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/jammy/patch/?id=c1da50fa6eddad313360249cadcd4905ac9f82ea";
|
||||
sha256 = "sha256-357+EzMLLt7IINdH0ENE+VcDXwXJMo4qiF/Dorp2Eyw=";
|
||||
};
|
||||
}
|
||||
];
|
||||
boot.kernelParams = [
|
||||
"compat_uts_machine=armv7l"
|
||||
];
|
||||
nix.settings.extra-platforms = "armv7l-linux";
|
||||
}
|
|
@ -12,6 +12,7 @@
|
|||
imports = [
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
|
||||
./armv7l.nix
|
||||
./hardware-configuration.nix
|
||||
../../shared/locale/configuration.nix
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue