nixos-config/home/shell/default.nix

20 lines
279 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
2024-04-30 23:06:12 +02:00
./zoxide.nix
2023-04-09 21:43:53 +02:00
./kitty.nix
./direnv.nix
];
2020-10-20 15:49:33 +02:00
programs.fzf = { enable = true; };
home.file."dev/work/.env".text = ''
BROWSER=mullvad-browser-work
'';
2020-03-21 16:31:14 +01:00
}