mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
9 lines
243 B
Nix
9 lines
243 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
|
boot.tmpOnTmpfs = true;
|
|
boot.zfs.enableUnstable = true;
|
|
services.journald.extraConfig = "SystemMaxUse=512M";
|
|
users.mutableUsers = false;
|
|
}
|