diff options
author | tzlil <tzlils@protonmail.com> | 2023-05-19 00:55:01 +0300 |
---|---|---|
committer | tzlil <tzlils@protonmail.com> | 2023-05-19 00:55:01 +0300 |
commit | 3c0270df7fbc7f183a9d03ad6157b3bb6b1861fc (patch) | |
tree | c4d05762560f6d110fb5088c81335eb837df1965 /profiles | |
parent | 767dbfb93697380df4e76d9efb6201fcafe60d78 (diff) |
add bluetooth to laptop
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/core.nix | 3 | ||||
-rw-r--r-- | profiles/security.nix | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/profiles/core.nix b/profiles/core.nix index f81ead8..1b18855 100644 --- a/profiles/core.nix +++ b/profiles/core.nix @@ -28,7 +28,8 @@ environment.defaultPackages = lib.mkForce []; age.identityPaths = ["/nix/persist/etc/ssh/ssh_host_ed25519_key"]; - programs.command-not-found.dbPath = inputs.programsdb.packages.${pkgs.system}.programs-sqlite; + # causing issues, fix this + #programs.command-not-found.dbPath = inputs.programsdb.packages.${pkgs.system}.programs-sqlite; # save uid/guid environment.persistence."/nix/persist".directories = ["/var/lib/nixos"]; diff --git a/profiles/security.nix b/profiles/security.nix index ddd980e..9ae5cef 100644 --- a/profiles/security.nix +++ b/profiles/security.nix @@ -16,7 +16,7 @@ environment.memoryAllocator.provider = "scudo"; environment.variables.SCUDO_OPTIONS = "ZeroContents=1"; - security.lockKernelModules = true; + # security.lockKernelModules = true; security.protectKernelImage = true; security.allowSimultaneousMultithreading = false; security.forcePageTableIsolation = true; |