mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 16:58:34 -05:00
16 lines
225 B
Nix
16 lines
225 B
Nix
{lib, ...}: {
|
|
imports = [
|
|
../../home/common.nix
|
|
../../home/helide
|
|
];
|
|
|
|
home = {
|
|
username = "tyler";
|
|
homeDirectory = lib.mkForce "/home/tyler";
|
|
|
|
packages = [
|
|
];
|
|
|
|
stateVersion = "23.11";
|
|
};
|
|
}
|