.dotfiles/dot_config/flake/machines/saffron/home.nix
2025-11-28 23:07:54 -05:00

18 lines
271 B
Nix

{outputs, ...}: {
imports = [
../../home/common.nix
../../home/helide
];
home = {
overlays = builtins.attrValues outputs.overlays;
username = "tyler";
homeDirectory = "/home/tyler";
packages = [
];
stateVersion = "23.11";
};
}