update home.nix
This commit is contained in:
@@ -1 +0,0 @@
|
|||||||
/home/nixos/.config/home-manager/home.nix
|
|
||||||
28
home-manager/home.nix
Normal file
28
home-manager/home.nix
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
{ config, pkgs, ...}:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.username = "nixos";
|
||||||
|
home.homeDirectory = "/home/nixos";
|
||||||
|
home.stateVersion = "23.11";
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
git
|
||||||
|
lazygit
|
||||||
|
nodejs
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.bash.enable = true;
|
||||||
|
programs.neovim = {
|
||||||
|
enable = true;
|
||||||
|
withPython3 = true;
|
||||||
|
withRuby = false;
|
||||||
|
};
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
user = {
|
||||||
|
name = "lenn";
|
||||||
|
email = "lennlouisgeek@gmail.com";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user