nixos-config/home/shell/default.nix

19 lines
254 B
Nix
Raw Normal View History

2020-03-13 19:41:55 +01:00
{ config, pkgs, ... }:
2023-03-17 12:37:26 +01:00
{
2023-04-09 21:43:53 +02:00
imports = [
./bash.nix
./zsh.nix
./nushell.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
}