12 lines
185 B
Nix
12 lines
185 B
Nix
{tree, ...}: {
|
|
imports = with tree.profiles.nixos; [
|
|
usbAutoMount
|
|
];
|
|
|
|
home-manager.users.chaos = {
|
|
imports = with tree.profiles.home-manager; [
|
|
sshUSB
|
|
];
|
|
};
|
|
}
|