nixos/home/Monarch-tux.nix

27 lines
568 B
Nix
Raw Normal View History

{ pkgs, ... }:
2023-04-21 07:28:18 +01:00
{
imports = [
./git/personal.nix
./env/zsh.nix
./env/bat.nix
./env/direnv.nix
./env/keychain.nix
./env/ssh.nix
./env/starship.nix
./terminal/wezterm.nix
./tui/neovim.nix
./tui/lazygit.nix
2023-04-21 07:28:18 +01:00
];
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "tux";
home.homeDirectory = "/Users/tux";
2023-04-21 07:28:18 +01:00
home.stateVersion = "22.11";
home.packages = with pkgs; [ silver-searcher ];
programs.zsh.envExtra = ''
eval "$(/opt/homebrew/bin/brew shellenv)"
'';
2023-04-21 07:28:18 +01:00
}