Files
nix/modules/nih/programs/default.nix

21 lines
246 B
Nix
Raw Normal View History

2024-04-04 16:56:03 -03:00
{
config,
lib,
pkgs,
...
}: let
cfg = config.programs;
in {
2024-04-04 16:56:03 -03:00
imports = [
./direnv.nix
2024-04-04 16:56:03 -03:00
./hyprland.nix
./lf.nix
./starship.nix
./tmux.nix
./wezterm.nix
./zsh.nix
2024-04-04 16:56:03 -03:00
];
options.programs = {};
config = {};
2024-04-04 16:56:03 -03:00
}