16 lines
351 B
Nix
16 lines
351 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking.hostName = "loki-nixos";
|
|
imports = [ ../../nixos/custom.nix ./hardware-configuration.nix ];
|
|
|
|
fileSystems."/".options = [ "ssd" "noatime" "compress=zstd" ];
|
|
swapDevices = [{
|
|
device = "/swapfile";
|
|
size = 16 * 1024;
|
|
randomEncryption.enable = true;
|
|
}];
|
|
boot.resumeDevice = "/dev/nvme0n1p2";
|
|
|
|
}
|