dotfiles/provision/nixos/hosts/kestrel/home-configuration.nix

17 lines
268 B
Nix
Raw Normal View History

2023-07-10 17:52:34 -07:00
{ config, pkgs, user, ... }:
{
home.username = "${user}";
home.homeDirectory = "/home/${user}";
programs.home-manager.enable = true;
home.packages = with pkgs; [
chezmoi
rbw
2023-07-23 14:34:39 -07:00
zk
2023-08-04 21:15:34 -07:00
joplin
joplin-desktop
2023-07-10 17:52:34 -07:00
];
2023-07-11 21:17:48 -07:00
home.stateVersion = "23.05";
2023-07-10 17:52:34 -07:00
}