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

24 lines
385 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;
}