summaryrefslogtreecommitdiff
path: root/systems/atlas/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-09 14:32:23 -0400
committerseth <[email protected]>2024-05-09 14:32:23 -0400
commitf8d6ed8c3a0b92967a7c160b4ad462127397fc7f (patch)
tree2e7bad0f1cae3666253fe5373466dce4c5085a77 /systems/atlas/default.nix
parent3dcde02ad216839e1d357668b18ba882614a8331 (diff)
atlas: drop hardened profile
this creates a lot of issues with tests in nixpkgs :(
Diffstat (limited to 'systems/atlas/default.nix')
-rw-r--r--systems/atlas/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/systems/atlas/default.nix b/systems/atlas/default.nix
index 8d47da4..9f2f6b0 100644
--- a/systems/atlas/default.nix
+++ b/systems/atlas/default.nix
@@ -1,7 +1,6 @@
{modulesPath, ...}: {
imports = [
(modulesPath + "/profiles/minimal.nix")
- (modulesPath + "/profiles/hardened.nix")
./hardware-configuration.nix
./miniflux.nix
./nginx.nix
@@ -18,9 +17,5 @@
networking.domain = "getchoo.com";
- # not sure why this fails...
- # context: https://discourse.nixos.org/t/logrotate-config-fails-due-to-missing-group-30000/28501
- services.logrotate.checkConfig = false;
-
system.stateVersion = "23.05";
}