nixos-config/modules/system/default.nix

17 lines
304 B
Nix
Raw Permalink Normal View History

2025-01-21 12:02:11 -05:00
{ lib, ... }:
{
imports = [
./accounts
./devices
./programs
./secrets
./services
./settings
];
2025-01-21 12:02:11 -05:00
2025-02-25 01:37:56 -05:00
options.system = with lib; {
2025-02-28 15:00:12 -05:00
desktop.enable = mkEnableOption "Enable desktop apps and services";
server.enable = mkEnableOption "Enable server apps and services";
2025-01-21 12:02:11 -05:00
};
}