28 lines
474 B
Nix
28 lines
474 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.username = "i";
|
|
home.homeDirectory = "/home/i";
|
|
home.stateVersion = "24.05";
|
|
|
|
home.file.".zshenv" = {
|
|
text = "source ~/.nix-profile/etc/profile.d/hm-session-vars.sh";
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
};
|
|
|
|
imports = [
|
|
./shared_packages/nvim/neovim.nix
|
|
./shared_packages/zsh/zsh-home.nix
|
|
./packages/neovim.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
act
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|
|
|