[Security] move hardening config to a dedicated security subfolder

This commit is contained in:
Antoine Viallon 2023-07-31 21:44:22 +02:00
parent 7fcea8a377
commit 398343a1b3
Signed by: aviallon
GPG key ID: 186FC35EDEB25716
3 changed files with 7 additions and 1 deletions

View file

@ -9,7 +9,7 @@
./packages.nix
./services.nix
./filesystems.nix
./hardening.nix
./security
./hardware
./laptop.nix
./power.nix

6
security/default.nix Normal file
View file

@ -0,0 +1,6 @@
{config, ...}:
{
imports = [
./hardening.nix
];
}