41 lines
620 B
Nix
Raw 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"
];
};
2025-03-26 19:53:32 -04:00
users.root = {
home = "/root";
files = [
".ssh/known_hosts"
];
};
2024-12-31 06:59:22 -05:00
};
2025-02-10 18:14:18 -05:00
2025-08-10 15:34:29 -04:00
me.install.user.root.file = {
".ssh/config" = {
source = ./files/ssh_config_root;
2025-02-10 18:14:18 -05:00
};
2025-08-10 15:34:29 -04:00
};
me.install.user.talexander.file = {
".ssh/config" = {
source = ./files/ssh_config;
};
2025-08-10 15:34:29 -04:00
};
2024-12-31 06:59:22 -05:00
}