32 lines
540 B
Nix
32 lines
540 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./neovim.nix
|
|
];
|
|
# Home Manager needs a bit of information about you and the
|
|
# paths it should manage.
|
|
home.username = "xenia";
|
|
home.homeDirectory = "/home/xenia";
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
|
|
home.packages = with pkgs; [
|
|
wezterm
|
|
git
|
|
zsh
|
|
starship
|
|
firefox
|
|
bitwarden
|
|
gcc
|
|
];
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Evie Litherland-Smith";
|
|
userEmail = "evie@xenia.me.uk";
|
|
};
|
|
|
|
}
|