da10937ed1
This is kind of bad place for this. But I'm keeping it here until I can reorganize it.
16 lines
315 B
Nix
16 lines
315 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 = [
|
|
./system
|
|
./applications
|
|
./lang
|
|
# TODO Refactor everything after this.
|
|
./cli.nix
|
|
];
|
|
}
|