mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
18 lines
277 B
Nix
18 lines
277 B
Nix
{ config, pkgs, user, ... }:
|
|
{
|
|
home.username = "${user}";
|
|
home.homeDirectory = "/home/${user}";
|
|
programs.home-manager.enable = true;
|
|
|
|
home.packages = with pkgs; [
|
|
chezmoi
|
|
rbw
|
|
];
|
|
|
|
# Enable home modules
|
|
#modules = {
|
|
#};
|
|
|
|
home.stateVersion = "23.11";
|
|
}
|