nixos-config/home/yt/chunk.nix
2025-01-05 18:21:20 -05:00

21 lines
295 B
Nix

{
pkgs,
...
}:
{
imports = [
./common.nix
];
home = {
username = "yt";
homeDirectory = "/home/yt";
stateVersion = "24.05";
};
programs.home-manager.enable = true;
systemd.user.startServices = "sd-switch";
home.packages = with pkgs; [
foot.terminfo
];
}