nixfiles/presets/nixos/encryptedUSB.nix

12 lines
185 B
Nix
Raw Normal View History

2023-09-18 03:56:58 +01:00
{tree, ...}: {
2024-07-24 14:13:59 +01:00
imports = with tree.profiles.nixos; [
usbAutoMount
];
2023-09-18 03:56:58 +01:00
home-manager.users.chaos = {
2024-07-24 14:13:59 +01:00
imports = with tree.profiles.home-manager; [
sshUSB
];
2023-09-18 03:56:58 +01:00
};
}