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

19 lines
270 B
Nix

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