From 9e5d2e23078d5f1a0571b8f1fcf2baf61fffbf3f Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 3 Dec 2022 11:11:48 +0800 Subject: [PATCH] hosts/plover: add hardened profile from nixpkgs --- hosts/plover/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/plover/default.nix b/hosts/plover/default.nix index 78ee4c2c..afa4c845 100644 --- a/hosts/plover/default.nix +++ b/hosts/plover/default.nix @@ -1,4 +1,4 @@ -{ config, options, lib, pkgs, ... }: +{ config, options, lib, pkgs, modulesPath, ... }: let inherit (builtins) toString; @@ -18,6 +18,9 @@ in (lib.mapHomeManagerUser "plover" {}) (lib.getUser "nixos" "plover") + + # Hardened profile from nixpkgs. + "${modulesPath}/profiles/hardened.nix" ]; networking.domain = "foodogsquared.one";