home: move amneesh to its own directory

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2025-06-29 19:51:33 +05:30
parent a9d4f6de5a
commit 1651bb9356
2 changed files with 2 additions and 5 deletions

24
home/amneesh/default.nix Normal file
View File

@@ -0,0 +1,24 @@
{
config,
pkgs,
inputs,
...
}:
{
home = {
homeDirectory = "/home/amneesh";
username = "amneesh";
stateVersion = "24.05";
packages = with pkgs; [
htop
nattovim
clang-tools
llvmPackages.clang
];
};
xdg.mime.enable = true;
targets.genericLinux.enable = true;
programs.bash.enable = true;
}