mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 19:46:10 +01:00
microsoft/surface: rename 'lts' and 'latest' to 'longterm' and 'stable'
This commit is contained in:
parent
dab2104c1f
commit
2034c5d2e7
2 changed files with 9 additions and 9 deletions
|
|
@ -5,9 +5,9 @@ let
|
|||
|
||||
# Set the full kernel version and hashes
|
||||
version =
|
||||
if config.microsoft-surface.kernelVersion == "lts" then
|
||||
if config.microsoft-surface.kernelVersion == "longterm" then
|
||||
"6.12.19"
|
||||
else if config.microsoft-surface.kernelVersion == "latest" then
|
||||
else if config.microsoft-surface.kernelVersion == "stable" then
|
||||
"6.13.6"
|
||||
else
|
||||
abort "Invalid kernel version: ${config.microsoft-surface.kernelVersion}";
|
||||
|
|
@ -56,10 +56,10 @@ in {
|
|||
options.microsoft-surface.kernelVersion = mkOption {
|
||||
description = "Kernel Version to use (patched for MS Surface)";
|
||||
type = types.enum [
|
||||
"lts"
|
||||
"latest"
|
||||
"longterm"
|
||||
"stable"
|
||||
];
|
||||
default = "lts";
|
||||
default = "longterm";
|
||||
};
|
||||
|
||||
config = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue