mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
14 lines
231 B
Nix
14 lines
231 B
Nix
|
{ 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";
|
||
|
}
|