fix: Make the default package disabling actually work

This commit is contained in:
Tristan Daniël Maat 2025-11-20 00:24:04 +08:00
parent eef7f004b3
commit 54a12223ea
Signed by: tlater
GPG key ID: 02E935006CF2E8E7

View file

@ -1,4 +1,9 @@
{ modulesPath, flake-inputs, ... }:
{
lib,
modulesPath,
flake-inputs,
...
}:
{
imports = [
flake-inputs.disko.nixosModules.disko
@ -79,7 +84,7 @@
sops.defaultSopsFile = ../keys/production.yaml;
# Remove some unneeded packages
environment.defaultPackages = [ ];
environment.defaultPackages = lib.mkForce [ ];
system.stateVersion = "20.09";
}