nixconf/modules/applications/default.nix

20 lines
181 B
Nix

{
lib,
config,
pkgs,
...
}:
let
cfg = config.modules.apps;
in
{
imports = [
./firefox.nix
./git.nix
./kitty.nix
./zsh.nix
./thunderbird.nix
];
}