15 lines
260 B
Nix
15 lines
260 B
Nix
{ ... }: {
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
|
|
users.twoneis = {
|
|
home = {
|
|
username = "twoneis";
|
|
homeDirectory = "/home/twoneis";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
};
|
|
};
|
|
}
|