nix-files/hosts/modules/gui/default.nix

16 lines
213 B
Nix
Raw Normal View History

{ lib, config, ... }:
let
inherit (lib) mkDefault mkIf mkOption types;
cfg = config.sane.gui;
in
2023-01-29 08:10:53 +00:00
{
imports = [
./gnome.nix
./phosh.nix
./plasma.nix
./plasma-mobile.nix
2023-01-29 08:10:53 +00:00
./sway.nix
];
}