mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-15 19:23:01 +03:00
c1acf97334
Since the initial implementation I learned enough to know where it was slighly wrong. I think this fixes most of the slight wrongness.
21 lines
381 B
Nix
21 lines
381 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.mobile.hardware.socs;
|
|
in
|
|
{
|
|
options.mobile = {
|
|
hardware.socs.generic-x86_64.enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = "Enable when system is a generic x86_64";
|
|
};
|
|
};
|
|
|
|
config = {
|
|
mobile.system.system = lib.mkIf cfg.generic-x86_64.enable "x86_64-linux";
|
|
};
|
|
}
|