18 lines
312 B
Nix
18 lines
312 B
Nix
{ ... }: {
|
|
imports = [
|
|
../../system/home/direnv
|
|
../../system/home/editor
|
|
../../system/home/git
|
|
../../system/home/shell
|
|
./server-utils
|
|
];
|
|
|
|
home = {
|
|
username = "twoneis";
|
|
homeDirectory = "/home/twoneis";
|
|
|
|
stateVersion = "22.11";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|