Files
nix/modules/nih/programs/default.nix
Gustavo "Guz" L. de Mello 5ce99497d7 refactor!: I went too close into the sun
Simlified everything, things were getting out of control
2024-04-08 16:37:29 -03:00

21 lines
246 B
Nix

{
config,
lib,
pkgs,
...
}: let
cfg = config.programs;
in {
imports = [
./direnv.nix
./hyprland.nix
./lf.nix
./starship.nix
./tmux.nix
./wezterm.nix
./zsh.nix
];
options.programs = {};
config = {};
}