fix(module): add missing semicolons

This commit is contained in:
Jo 2024-09-06 17:53:13 +02:00
parent b43660c227
commit 11b1410d2c
4 changed files with 7 additions and 7 deletions

View file

@ -33,5 +33,5 @@ in {
}; };
}; };
}; };
} };
} }

View file

@ -34,5 +34,5 @@ in {
} }
''; '';
}; };
} };
} }

View file

@ -20,13 +20,13 @@ in {
enable = mkEnableOption "Modify the standard kernel settings"; enable = mkEnableOption "Modify the standard kernel settings";
version = mkOption { version = mkOption {
type = lib.types.str; type = lib.types.str;
default = "latest"; default = "linuxPackages_latest";
example = "latest"; example = "linuxPackages_latest";
description = "Set the kernel version to be used by your system" description = "Set the kernel version to be used by your system";
}; };
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
kernelPackages = pkgs.linuxPackages_${cfg.version}; boot.kernelPackages = pkgs.${cfg.version};
}; };
} }

View file

@ -36,5 +36,5 @@ in {
options = "--delete-older-than 3d"; options = "--delete-older-than 3d";
}; };
}; };
} };
} }