This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/default.nix
James Patrick da10937ed1 Added lang. This is for development targets.
This is kind of bad place for this. But I'm keeping it here until I can
reorganize it.
2022-03-04 22:24:38 -05:00

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
];
}