1 files changed, 2 insertions, 2 deletions
diff --git a/host/Rory-ovh/services/containers/shared.nix b/host/Rory-ovh/services/containers/shared.nix
index 7bad188..2fc613b 100644
--- a/host/Rory-ovh/services/containers/shared.nix
+++ b/host/Rory-ovh/services/containers/shared.nix
@@ -1,10 +1,8 @@
{ pkgs, lib, config, ... }:
{
environment.systemPackages = with pkgs; [
- neofetch
lnav
zsh
- git
lsd
htop
btop
@@ -40,4 +38,6 @@
dnssec = lib.mkForce "false";
dnsovertls = lib.mkForce "false";
};
+
+ systemd.oomd.enable = false; # Kinda useless in a container, lol
}
|