16 lines
306 B
Nix
16 lines
306 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./impermanence.nix
|
|
./sshd.nix
|
|
./user-ppetru.nix
|
|
./unattended-encryption.nix
|
|
];
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.networkmanager.enable = true;
|
|
}
|