11 lines
205 B
Nix
11 lines
205 B
Nix
{ lib, ... }: {
|
|
options.programs.boot = {
|
|
boot_params = lib.mkOption {
|
|
default = [ ];
|
|
example = [ "resume=something" ];
|
|
description = ''
|
|
Boot params
|
|
'';
|
|
};
|
|
};
|
|
}
|