Files
nix/modules/nih/programs/default.nix
2024-04-05 18:01:36 -03:00

19 lines
241 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 = { };
}