13 lines
198 B
Nix
13 lines
198 B
Nix
{ ... } : {
|
|
programs.home-manager.enable = true;
|
|
home = {
|
|
username = "axolotsh";
|
|
homeDirectory = "/home/axolotsh";
|
|
stateVersion = "25.05";
|
|
};
|
|
|
|
imports = [
|
|
./index.nix
|
|
];
|
|
}
|