Files
dotfiles/home/amneesh.nix
Amneesh Singh eac8c77797 home/amneesh: update
Signed-off-by: Amneesh Singh <a-singh21@ti.com>
2024-07-12 09:51:21 +05:30

25 lines
410 B
Nix

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