nixfiles/presets/nixos/encryptedUSB.nix
2024-07-24 14:13:59 +01:00

12 lines
185 B
Nix

{tree, ...}: {
imports = with tree.profiles.nixos; [
usbAutoMount
];
home-manager.users.chaos = {
imports = with tree.profiles.home-manager; [
sshUSB
];
};
}