nixcfg/homeManagerModules/guiApps/default.nix

9 lines
217 B
Nix
Raw Normal View History

2024-03-28 19:52:15 -04:00
{ config, lib, pkgs, ... }:
{
2024-03-28 21:34:08 -04:00
imports = [ ./alacritty ./chromium ./firefox ./fuzzel ./librewolf ./mako ./waybar ];
2024-03-28 19:52:15 -04:00
2024-03-28 21:00:33 -04:00
guiApps.firefox.enable = lib.mkDefault true;
2024-03-28 19:52:15 -04:00
guiApps.alacritty.enable = lib.mkDefault true;
}