10 lines
244 B
Nix
10 lines
244 B
Nix
{ config, pkgs, lib, ... }: {
|
|
options.this.graphical.enable = lib.mkOption {
|
|
default = false;
|
|
type = with lib.types; bool;
|
|
description = "Does this actually need X/Wayland";
|
|
};
|
|
|
|
imports = [ ./applications ./lang ./system ];
|
|
}
|