nixos-config/home/yt/chunk.nix

23 lines
312 B
Nix
Raw Permalink Normal View History

2024-12-13 22:11:51 -05:00
{
pkgs,
...
2024-12-19 02:32:58 -05:00
}:
{
2024-12-13 23:27:33 -05:00
imports = [
./common.nix
2024-12-13 23:27:33 -05:00
];
2024-12-13 22:11:51 -05:00
home = {
username = "yt";
homeDirectory = "/home/yt";
stateVersion = "24.05";
};
programs.home-manager.enable = true;
systemd.user.startServices = "sd-switch";
home.packages = with pkgs; [
2024-12-21 15:14:48 -05:00
foot.terminfo
2025-01-05 17:24:03 -05:00
attic-server
2024-12-13 22:11:51 -05:00
];
}