Files
nixos/modules/linux/linux.nix
T
2023-12-29 23:36:40 -06:00

12 lines
158 B
Nix

{ config, lib, ... }:
let
cfg = config.greg.linux;
in with lib; {
options.greg.linux = mkEnableOption "This system is Linux";
config = mkIf cfg {
};
}