mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
22 lines
560 B
Nix
22 lines
560 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home-manager.users.yoda = {
|
|
/* The home.stateVersion option does not have a default and must be set */
|
|
/* https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion */
|
|
home.stateVersion = "23.05";
|
|
|
|
/* Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; */
|
|
|
|
#home.username = "yoda";
|
|
#home.homeDirectory = "/home/yoda";
|
|
|
|
# TODO: See history.path in zsh module.
|
|
# xdg = {
|
|
# enable = true;
|
|
# #dataHome = "${config.xdg.home.homeDirectory}/.local/share";
|
|
# };
|
|
|
|
};
|
|
}
|