Files
nixos-config/hosts/orion/home.nix
2025-11-29 20:29:16 +01:00

35 lines
523 B
Nix

{
pkgs,
config,
...
}:
{
imports = [
# Mostly user-specific configuration
./variables.nix
# Programs
../../modules/home-manager/shell
../../modules/home-manager/git.nix
];
home = {
inherit (config.var) username;
homeDirectory = "/home/" + config.var.username;
packages = with pkgs; [
# Utils
btop
# Provide relevant terminfo
kitty
ghostty
];
# Don't touch this
stateVersion = "24.05";
};
programs.home-manager.enable = true;
}