33 lines
620 B
Nix
33 lines
620 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Set username and home directory
|
|
home.username = "twoneis";
|
|
home.homeDirectory = "/home/twoneis";
|
|
|
|
programs = {
|
|
home-manager = {
|
|
enable = true;
|
|
};
|
|
|
|
git = {
|
|
enable = true;
|
|
userName = "twoneis";
|
|
userEmail = "sanjay29@sapura.de";
|
|
};
|
|
|
|
helix = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
settings = import ./dotfiles/helix/config.nix;
|
|
themes = import ./dotfiles/helix/rosepine.nix;
|
|
};
|
|
};
|
|
|
|
alacritty = {
|
|
enable = true;
|
|
settings = import ./dotfiles/alacritty/alacritty.nix;
|
|
};
|
|
|
|
home.stateVersion = "18.09";
|
|
}
|