nixfiles/presets/nixos/desktopGui.nix
2024-07-24 15:11:46 +01:00

26 lines
334 B
Nix

{
lib,
tree,
...
}: let
inherit (lib.lists) flatten;
in {
imports = flatten (with tree; [
(with profiles.nixos; [
gui.base
gui.environments.gnome
sound.base
sound.pipewire
wifiHardware
mullvad
])
(with presets.home-manager; [
by-user.chaos.guiDesktop
])
]);
}