2 files changed, 3 insertions, 9 deletions
diff --git a/host/Rory-desktop/configuration.nix b/host/Rory-desktop/configuration.nix
index 5558a08..5c5f7f7 100644
--- a/host/Rory-desktop/configuration.nix
+++ b/host/Rory-desktop/configuration.nix
@@ -237,15 +237,6 @@ args@{
enableGhostscriptFonts = lib.mkForce false;
};
- services.cockpit = {
- enable = true;
- settings = {
- WebService = {
- AllowUnencrypted = true;
- };
- };
- };
-
nix.settings.auto-optimise-store = lib.mkForce false;
nixpkgs = {
config = {
diff --git a/host/Rory-ovh/configuration.nix b/host/Rory-ovh/configuration.nix
index 0d7ef0e..858bfef 100755
--- a/host/Rory-ovh/configuration.nix
+++ b/host/Rory-ovh/configuration.nix
@@ -39,6 +39,9 @@
"riscv64-linux"
"riscv32-linux"
];
+ boot.kernelParams = [
+ "vm.nr_hugepages=48000"
+ ];
networking = {
hostName = "Rory-ovh";
nat = {
|