nix-config/hosts/common/home.nix
smayzy 5798a8bcb2
All checks were successful
nix flake show / show-flake (push) Successful in 28s
remove firefox in hm
2025-08-08 19:17:38 +02:00

53 lines
969 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";
};
};
stylix.autoEnable = false;
programs.zoxide.enable = true;
programs.home-manager.enable = true;
}