nixos-config/profiles/homelab/home.nix
2023-06-27 09:21:48 -05:00

27 lines
698 B
Nix

{ config, lib, pkgs, username, email, dotfilesDir, ... }:
{
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = username;
home.homeDirectory = "/home/"+username;
programs.home-manager.enable = true;
imports = [
../../user/shell/sh.nix # My zsh and bash config
../../user/bin/phoenix.nix # My nix command wrapper
../../user/app/ranger/ranger.nix # My ranger file manager config
../../user/app/git/git.nix # My git config
];
home.stateVersion = "22.11"; # Please read the comment before changing.
home.packages = with pkgs; [
# Core
zsh
git
];
}