Rename user from blank to i

This commit is contained in:
caem 2024-06-06 16:29:09 +02:00
parent e7e618f42b
commit dff2ba275a
Signed by: caem
GPG key ID: 69A830D03203405F
10 changed files with 24 additions and 11 deletions

View file

@ -0,0 +1,25 @@
{ config, ... }:
{
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";
ZDOTDIR = "${config.xdg.configHome}/zsh";
};
imports = [
./shared_packages/nvim/neovim.nix
./shared_packages/zsh/zsh-home.nix
./packages/neovim.nix
];
programs.home-manager.enable = true;
}