diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-02-11 16:57:03 +0100 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-02-11 16:57:03 +0100 |
commit | 615dc56e5297cf512bb0210ed9ba4e60372df23a (patch) | |
tree | 0f0d07f3baa6fc6a85856b02f6ceb1800f209a89 | |
parent | Fix home manager (diff) | |
download | Rory-Open-Architecture-615dc56e5297cf512bb0210ed9ba4e60372df23a.tar.xz |
Disable core dumps
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
-rw-r--r-- | modules/base.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/base.nix b/modules/base.nix index 57390bb..58d0e66 100644 --- a/modules/base.nix +++ b/modules/base.nix @@ -49,6 +49,10 @@ vimPlugins.vim-nix ]; + systemd.coredump.extraConfig = mkDefault '' + Storage=none + ''; + nix.settings.experimental-features = [ "nix-command" "flakes" ]; system.stateVersion = "22.11"; # DO NOT EDIT! } \ No newline at end of file |