14 lines
276 B
Nix
14 lines
276 B
Nix
{osConfig, ...}: {
|
|
imports = [
|
|
./services/udiskie.nix
|
|
./terminal
|
|
./programs
|
|
];
|
|
home = rec {
|
|
inherit (osConfig.local.systemVars) username;
|
|
homeDirectory = "/home/${username}";
|
|
stateVersion = "24.05";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|