2023-10-03 15:10:09 +01:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
|
|
|
|
|
|
|
|
|
# Setup keyfile
|
|
|
|
|
boot.initrd.secrets = { "/crypto_keyfile.bin" = null; };
|
|
|
|
|
|
|
|
|
|
# Enable swap on luks
|
|
|
|
|
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-10-19 08:29:32 +01:00
|
|
|
|
services.syncthing.settings.folders = { "Pictures".enable = false; };
|
2023-10-03 15:10:09 +01:00
|
|
|
|
}
|