24 lines
398 B
Nix
24 lines
398 B
Nix
{
|
|
pkgs,
|
|
shellConfig,
|
|
...
|
|
}: let
|
|
username = "xenia";
|
|
homeDirectory = "/home/${username}";
|
|
in {
|
|
imports = [
|
|
shellConfig
|
|
../../home/git/personal.nix
|
|
../../home/ssh/personal.nix
|
|
../../home/tui
|
|
];
|
|
home = {
|
|
inherit username homeDirectory;
|
|
stateVersion = "22.11";
|
|
};
|
|
programs = {
|
|
home-manager.enable = true;
|
|
neovim.package = pkgs.neovim-nightly;
|
|
};
|
|
}
|