16 lines
207 B
Nix
16 lines
207 B
Nix
{
|
|
lib,
|
|
self,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./terminal
|
|
];
|
|
home = {
|
|
username = "nezia";
|
|
homeDirectory = "/home/nezia";
|
|
stateVersion = "24.05";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|