mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
zramSwap.enable: lower priority
This commit is contained in:
parent
dadc143751
commit
b3a40a91c3
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
time.timeZone = "US/Eastern";
|
time.timeZone = "US/Eastern";
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
systemd.tmpfiles.rules = [ "e /nix/var/log - - - 30d" ];
|
systemd.tmpfiles.rules = [ "e /nix/var/log - - - 30d" ];
|
||||||
|
|
||||||
zramSwap.enable = true;
|
zramSwap.enable = lib.mkDefault true;
|
||||||
|
|
||||||
networking.hostId = builtins.substring 0 8 (builtins.hashString "md5" config.networking.hostName);
|
networking.hostId = builtins.substring 0 8 (builtins.hashString "md5" config.networking.hostName);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue