os/hosts/stroopwafel/persistence.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
874 B
Nix
Raw Normal View History

{ lib, config, ... }:
2024-01-27 22:53:36 +00:00
{
systemd.tmpfiles.rules = [
"L /home/${config.pub-solar.user.name}/Workspace/os - - - - /etc/nixos"
2024-01-27 22:53:36 +00:00
"L /var/lib/bluetooth - - - - /persist/var/lib/bluetooth"
2024-01-29 22:02:05 +00:00
"d /persist/var/lib/bluetooth 0500 root root"
"L /var/lib/docker - - - - /persist/var/lib/docker"
2024-01-29 22:02:05 +00:00
"d /persist/var/lib/docker 0510 root root"
"d /persist/etc/NetworkManager/system-connections 0500 root root"
"d /persist/etc/ssh 0400 root root"
2024-01-27 22:53:36 +00:00
];
2024-01-29 22:02:05 +00:00
environment.etc."NetworkManager/system-connections" = {
source = "/persist/etc/NetworkManager/system-connections/";
};
2024-01-27 22:53:36 +00:00
services.openssh = {
enable = true;
hostKeys = [
{
path = "/persist/etc/ssh/ssh_host_ed25519_key";
type = "ed25519";
}
{
path = "/persist/etc/ssh/ssh_host_rsa_key";
type = "rsa";
bits = 4096;
}
];
};
}