nixconf/modules/applications/default.nix
2024-11-11 11:25:01 +01:00

18 lines
179 B
Nix

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