restructuring pt 1
This commit is contained in:
parent
146c0a0929
commit
fcc480dbf1
7 changed files with 147 additions and 15 deletions
22
hosts/nixvm/home.nix
Normal file
22
hosts/nixvm/home.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue