dotfiles/users/nyadmin/home.nix

22 lines
347 B
Nix
Raw Normal View History

2024-01-23 20:02:43 -08:00
{ config,
nixosConfig,
pkgs,
inputs,
home-manager,
... }:
{
2024-03-26 20:56:49 -07:00
home.packages = lib.attrVals [
#"placeholder"
] pkgs;
2024-01-23 20:02:43 -08:00
2024-03-26 20:56:49 -07:00
home.file = {
".zshrc".source = config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/zshrc";
};
2024-01-23 20:02:43 -08:00
# Read the Docs before change
2024-01-23 22:27:45 -08:00
home.stateVersion = "23.05";
2024-03-26 20:56:49 -07:00
home.homeDirectory = "/home/nyadmin";
2024-01-23 20:02:43 -08:00
}