From 82ac0622aa2f45ca6f57db75144dcefa99bc28cd Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Thu, 6 Mar 2025 13:08:29 +0100 Subject: [PATCH] Various --- modules/common/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/common/default.nix b/modules/common/default.nix index c802ddd..88bd936 100644 --- a/modules/common/default.nix +++ b/modules/common/default.nix @@ -1,6 +1,7 @@ { lib, fleetModules, + pkgs, ... }: { @@ -15,4 +16,12 @@ users.mutableUsers = false; i18n.defaultLocale = "en_US.UTF-8"; nixpkgs.config.allowUnfree = true; # Forgive me Mr. Stallman :( + system.switch.enableNg = true; + + environment.systemPackages = [ pkgs.btop ]; + + # FIXME not the best place + nixpkgs.config.permittedInsecurePackages = [ + "olm-3.2.16" + ]; }