267a9cecfd
Wayland as a couple to man issues still. QT related applications being unable to function was the final straw.
12 lines
198 B
Nix
12 lines
198 B
Nix
{ config, pkgs, lib, ... }:
|
|
with lib;
|
|
let
|
|
in {
|
|
|
|
options.this.graphical = {
|
|
enable = mkEnableOption "Does this actually need X/Wayland";
|
|
};
|
|
|
|
imports = [ ./applications ./lang ./system ];
|
|
}
|