15 lines
207 B
Nix
15 lines
207 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
# Add program-specific configurations here
|
|
./git.nix
|
|
./direnv.nix
|
|
./neovim.nix
|
|
./sway.nix
|
|
./waybar.nix
|
|
# ./shell.nix
|
|
./yazi.nix
|
|
];
|
|
}
|