Files
dotfiles/home/amneesh.nix
2024-07-08 17:49:02 +05:30

22 lines
342 B
Nix

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