Evie Litherland-Smith
e2c9d8eba7
nvim repo has been converted to flake for easier inclusion but still stand-alone for non-nix systems Move tokyonight repo fetch to flake input to keep consistent and reduce multiple fetch calls
17 lines
329 B
Nix
17 lines
329 B
Nix
{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;
|
|
}
|