nix-config/modules/home-manager/shell/default.nix
2025-05-30 21:10:10 +02:00

16 lines
212 B
Nix

{ pkgs, ... }:
{
home-manager.users.willifan = {
imports = [
./bash.nix
./eza.nix
./hyfetch.nix
./nushell.nix
./ssh.nix
./starship.nix
./zoxide.nix
];
};
}