nix-config/hosts/common/home.nix
smayzy 87a7013d51
All checks were successful
nixos config pipeline / show-flake (push) Successful in 27s
nixos config pipeline / deploy (push) Successful in 2m59s
update && remove floorp & stylix && mkForce nfv theme && change kdenlive pkg name cause changed upstream
2025-09-27 10:07:50 +02:00

51 lines
939 B
Nix

{ pkgs, ... }:
{
imports = [
../../modules/home-manager/default.nix
];
home.username = "smayzy";
home.homeDirectory = "/home/smayzy";
home.stateVersion = "25.05";
home.packages = with pkgs; [
sl
];
home.sessionVariables = {
EDITOR = "vim";
GTK_THEME = "Adwaita:dark";
MANPAGER = "nvim +Man!";
};
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
history.size = 100000;
shellAliases = {
grep = "grep --color=auto";
cp = "cp -r";
cd = "sl";
};
};
programs.git = {
enable = true;
userName = "smayzy";
userEmail = "smayzy@smayzy.ovh";
extraConfig = {
core.editor = "vim";
core.autocrlf = "input";
credential.helper = "store";
pull.rebase = "true";
};
};
programs.zoxide.enable = true;
programs.home-manager.enable = true;
}