Files
nixos/modules-linux/linux.nix
T

12 lines
158 B
Nix
Raw Normal View History

2022-09-07 20:01:51 -05:00
{ config, lib, ... }:
let
cfg = config.greg.linux;
in with lib; {
options.greg.linux = mkEnableOption "This system is Linux";
config = mkIf cfg {
};
}