nixos/hosts/Vanguard/home.nix

19 lines
305 B
Nix
Raw Normal View History

{ shellConfig, ... }:
let
username = "xenia";
homeDirectory = "/home/${username}";
in
{
imports = [
shellConfig
../../home/git
../../home/ssh
../../home/tui
];
home = {
inherit username homeDirectory;
stateVersion = "22.11";
};
programs.home-manager.enable = true;
}