dotfiles/modules/nixos/profiles/graphical/default.nix

12 lines
154 B
Nix

{
lib,
config,
...
}: let
inherit (lib) mkIf;
in {
imports = mkIf config.bosun.profiles.graphical.enabled [
./wm.nix
./audio.nix
];
}