24 lines
306 B
Nix
Raw Permalink Normal View History

2024-12-31 06:59:22 -05:00
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
2025-01-14 17:56:29 -05:00
environment.systemPackages = with pkgs; [
sshfs
];
2024-12-31 06:59:22 -05:00
environment.persistence."/persist" = lib.mkIf (!config.me.buildingIso) {
hideMounts = true;
users.talexander = {
files = [
".ssh/known_hosts"
];
};
};
}