18 lines
179 B
Nix
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
|
|
];
|
|
}
|