2024-07-30 15:06:34 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
2024-07-10 08:27:17 +01:00
|
|
|
imports = [
|
|
|
|
./laptop.nix
|
|
|
|
./desktop/plasma.nix
|
|
|
|
];
|
2024-05-11 15:41:19 +01:00
|
|
|
boot.initrd = {
|
2024-07-30 15:06:34 +01:00
|
|
|
secrets = {
|
|
|
|
"/crypto_keyfile.bin" = null;
|
|
|
|
};
|
2024-05-11 15:41:19 +01:00
|
|
|
luks.devices."luks-761eeb11-3091-4142-9232-4fb33165eccd" = {
|
|
|
|
device = "/dev/disk/by-uuid/761eeb11-3091-4142-9232-4fb33165eccd";
|
|
|
|
keyFile = "/crypto_keyfile.bin";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
environment = {
|
|
|
|
etc."ppp/options".text = ''
|
|
|
|
ipcp-accept-remote
|
|
|
|
'';
|
2024-07-30 15:06:34 +01:00
|
|
|
systemPackages = with pkgs; [ openfortivpn ];
|
2024-06-19 13:55:37 +01:00
|
|
|
};
|
|
|
|
services = {
|
|
|
|
samba.enable = true;
|
|
|
|
hardware.bolt.enable = true;
|
2024-05-11 15:41:19 +01:00
|
|
|
};
|
|
|
|
}
|