improved organization

This commit is contained in:
twoneis 2024-05-08 21:59:33 +02:00
parent 4f70ad62c5
commit 98f3518283
5 changed files with 66 additions and 67 deletions
modules/server/home

View file

@ -1,18 +1,24 @@
{ ... }: {
imports = [
../../system/home/direnv
../../system/home/editor
../../system/home/git
../../system/home/shell
./server-utils
];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users.twoneis = {
imports = [
../../system/home/direnv
../../system/home/editor
../../system/home/git
../../system/home/shell
./server-utils
];
home = {
username = "twoneis";
homeDirectory = "/home/twoneis";
home = {
username = "twoneis";
homeDirectory = "/home/twoneis";
stateVersion = "22.11";
stateVersion = "22.11";
};
programs.home-manager.enable = true;
};
};
programs.home-manager.enable = true;
}