nix-config/modules/default/home-manager/shell/default.nix
2024-12-27 15:08:02 +01: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
];
};
}