home/amneesh: init

This commit is contained in:
Amneesh Singh
2024-07-08 17:49:02 +05:30
parent 270d7c2fe4
commit 3aab004b55
4 changed files with 37 additions and 0 deletions

21
home/amneesh.nix Normal file
View File

@@ -0,0 +1,21 @@
{ 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;
}