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

7
home/README Normal file
View File

@@ -0,0 +1,7 @@
natto : default user for okina (desktop - NixOS Unstable)
natto-laptop : default user for satori (laptop - NixOS Unstable)
bat : default user for remilia (Oracle VM - NixOS Unstable)
spin : default user for hina (Oracle VM - NixOS Unstable)
spark : default user for marisa (RPi4 - NixOS Unstable)
amneesh : default user for nightbug (Workplace PC - Ubuntu 22.04)

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;
}

View File

@@ -19,6 +19,7 @@
};
initExtra = ''
unsetopt extendedGlob
[[ -f ~/.zsh_custom ]] && source ~/.zsh_custom
'';
};
}

View File

@@ -80,5 +80,13 @@ in
}] ++ common;
pkgs = mkPkgs "x86_64-linux";
};
amneesh = inputs.home-manager.lib.homeManagerConfiguration {
inherit extraSpecialArgs;
modules = [
./amneesh.nix
] ++ common;
pkgs = mkPkgs "x86_64-linux";
};
};
}