nixos-config/home/shell/default.nix

12 lines
214 B
Nix

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