restructuring pt 1

This commit is contained in:
Xory 2025-08-28 14:51:10 +03:00
parent 146c0a0929
commit fcc480dbf1
7 changed files with 147 additions and 15 deletions

22
hosts/nixvm/home.nix Normal file
View file

@ -0,0 +1,22 @@
{ 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;
};
}