9 lines
160 B
Nix
9 lines
160 B
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib) mkEnableOption;
|
|
in
|
|
{
|
|
options.modules.system.roles.portable = {
|
|
enable = mkEnableOption "Laptop/Portable tweaks";
|
|
};
|
|
}
|