nixos-config/home/shell/default.nix

19 lines
254 B
Nix

{ config, pkgs, ... }:
{
imports = [
./bash.nix
./zsh.nix
./nushell.nix
./starship.nix
./kitty.nix
./direnv.nix
];
programs.fzf = { enable = true; };
home.file."dev/work/.env".text = ''
BROWSER=firefox-work
'';
}