Files
dotfiles/home/amneesh.nix
2025-06-29 19:49:39 +05:30

29 lines
392 B
Nix

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