mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
8 lines
209 B
Nix
8 lines
209 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
|
boot.tmpOnTmpfs = true;
|
|
services.journald.extraConfig = "SystemMaxUse=512M";
|
|
users.mutableUsers = false;
|
|
}
|