mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
19 lines
270 B
Nix
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";
|
|
};
|
|
}
|