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

14 lines
231 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
];
home.stateVersion = "23.05";
}