dotfiles/provision/hosts/torus/home-configuration.nix

18 lines
277 B
Nix
Raw Normal View History

2023-07-23 14:38:24 -07:00
{ config, pkgs, user, ... }:
{
home.username = "${user}";
home.homeDirectory = "/home/${user}";
programs.home-manager.enable = true;
home.packages = with pkgs; [
chezmoi
rbw
];
2023-11-19 11:36:46 -08:00
# Enable home modules
#modules = {
#};
home.stateVersion = "23.11";
2023-07-23 14:38:24 -07:00
}