Evie Litherland-Smith
23f74093d8
Remove work.nix variants of expressions Better use of defaults across all machines Set TERM env to xterm-256color for ssh connections by default
19 lines
305 B
Nix
19 lines
305 B
Nix
{ 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;
|
|
}
|