22 lines
397 B
Nix
22 lines
397 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
home.username = "xory";
|
|
home.homeDirectory = "/home/xory";
|
|
|
|
home.packages = with pkgs; [
|
|
neovim
|
|
fastfetch
|
|
firefox
|
|
];
|
|
|
|
home.stateVersion = "25.05";
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
shellAliases = {
|
|
"rebuild" = "sudo nixos-rebuild switch --flake ~/dots";
|
|
};
|
|
syntaxHighlighting.enable = true;
|
|
};
|
|
}
|