2024-03-22 10:08:58 +00:00
|
|
|
{pkgs, ...}: {
|
2023-12-19 14:46:22 +00:00
|
|
|
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
|
|
|
|
|
|
|
# Setup keyfile
|
2024-01-30 14:21:50 +00:00
|
|
|
boot.initrd.secrets = {"/crypto_keyfile.bin" = null;};
|
2023-12-19 14:46:22 +00:00
|
|
|
|
|
|
|
# Enable swap on luks
|
2024-01-30 14:21:50 +00:00
|
|
|
boot.initrd.luks.devices."luks-47d34268-5100-4eba-b34d-220f4239c1cb".device = "/dev/disk/by-uuid/47d34268-5100-4eba-b34d-220f4239c1cb";
|
|
|
|
boot.initrd.luks.devices."luks-47d34268-5100-4eba-b34d-220f4239c1cb".keyFile = "/crypto_keyfile.bin";
|
2023-12-26 10:29:20 +00:00
|
|
|
|
|
|
|
environment = {
|
|
|
|
etc."ppp/options".text = ''
|
|
|
|
ipcp-accept-remote
|
|
|
|
'';
|
2024-04-03 17:00:54 +01:00
|
|
|
systemPackages = with pkgs; [openfortivpn samba];
|
2023-12-26 10:29:20 +00:00
|
|
|
};
|
2024-03-06 08:44:32 +00:00
|
|
|
services.ollama.enable = true;
|
2023-12-19 14:46:22 +00:00
|
|
|
}
|