38 lines
804 B
Nix
38 lines
804 B
Nix
{
|
|
myOptions,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../modules/home-manager/helix.nix
|
|
../../modules/home-manager/zsh.nix
|
|
../../modules/home-manager/niri.nix
|
|
];
|
|
home.username = "bruhng";
|
|
home.homeDirectory = "/home/bruhng";
|
|
|
|
home.stateVersion = "24.11"; # Please read the comment before changing.
|
|
|
|
home.packages = with pkgs; [
|
|
# example for override
|
|
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
|
|
|
|
(writeShellScriptBin "updateNix" (builtins.readFile ../../update.sh))
|
|
];
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Gustav Bruhn";
|
|
userEmail = "gustav@bruhn.tech";
|
|
};
|
|
|
|
home.file = {
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
# EDITOR = "emacs";
|
|
};
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
}
|