aboutsummaryrefslogtreecommitdiff
path: root/modules/hosts/desktop/default.nix
blob: 7d7f3ae3f8f1463a11ca260d65d557151c1624e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ useHomeManager ? true, ... }:

{
  imports = [
    # NixOS-only modules (no home-manager)
    ./cinnamon
    ./gnome
    ./kde
  ] ++ (if useHomeManager then [
    # Modules that require home-manager
    ./hyprland
    ./labwc
    ./sway
    ./dunst.nix
    ./waybar.nix
  ] else [ ]);
}