Files
nixos-config/hosts/loki-nixos/configuration.nix
T
2025-12-23 13:48:12 +03:00

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";
}