mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-23 03:51:29 +00:00
nixpkgs.hostPlatform = system
This commit is contained in:
parent
43abd2ca45
commit
65e58666fd
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, system, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./variables-module.nix
|
./variables-module.nix
|
||||||
|
@ -108,6 +108,7 @@
|
||||||
if lib.versionAtLeast pkgs.nix.version "2.15.2"
|
if lib.versionAtLeast pkgs.nix.version "2.15.2"
|
||||||
then pkgs.nix.out
|
then pkgs.nix.out
|
||||||
else pkgs.nixUnstable.out;
|
else pkgs.nixUnstable.out;
|
||||||
|
nixpkgs.hostPlatform = system;
|
||||||
services.journald.extraConfig = "SystemMaxUse=500M";
|
services.journald.extraConfig = "SystemMaxUse=500M";
|
||||||
boot.kernel.sysctl = {
|
boot.kernel.sysctl = {
|
||||||
"net.ipv4.ip_forward" = 1; # TODO why is it here by default?
|
"net.ipv4.ip_forward" = 1; # TODO why is it here by default?
|
||||||
|
|
Loading…
Reference in a new issue