nixos-config/home/shell/default.nix

12 lines
214 B
Nix
Raw Normal View History

2020-03-13 19:41:55 +01:00
{ config, pkgs, ... }:
2023-03-17 12:37:26 +01:00
{
imports = [ ./bash.nix ./zsh.nix ./starship.nix ./kitty.nix ./direnv.nix ];
2020-10-20 15:49:33 +02:00
programs.fzf = { enable = true; };
home.file."dev/work/.env".text = ''
BROWSER=firefox-work
'';
2020-03-21 16:31:14 +01:00
}