mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-10 02:54:39 -07:00
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
# ./home-manager/death916-homelab.nix
|
|
{ config, pkgs, lib, inputs, ... }:
|
|
|
|
{
|
|
home.username = "death916";
|
|
home.homeDirectory = "/home/death916";
|
|
|
|
# Basic shell configuration (can be more elaborate)
|
|
programs.bash.enable = true;
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "death916";
|
|
userEmail = "mail@trentnelson.dev";
|
|
extraConfig = {
|
|
credential.helper = "store";
|
|
};
|
|
};
|
|
|
|
# Server-specific tools or dotfiles for death916
|
|
programs.tmux.enable = true; # Example from your repo image
|
|
|
|
# Example: Different shell prompt or aliases for server environment
|
|
# programs.bash.shellAliases = {
|
|
# ll = "ls -alh";
|
|
# update-system = "sudo nixos-rebuild switch --flake /etc/nixos#homelab";
|
|
# };
|
|
|
|
programs.atuin = {
|
|
enable = true;
|
|
settings = {
|
|
search_mode = "fuzzy";
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
# Any user-specific packages for death916 on the server
|
|
fastfetch
|
|
wget
|
|
helix
|
|
];
|
|
|
|
# Keep this consistent with your system's state version
|
|
home.stateVersion = "24.11";
|
|
programs.home-manager.enable = true;
|
|
}
|