default.nix: Turn on minimal profile

pull/70/head
Tristan Daniël Maat 2022-10-30 17:43:52 +00:00
parent 5c89aa5b83
commit b3e8b0e85c
Signed by: tlater
GPG Key ID: 49670FD774E43268
2 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,7 @@
}: {
imports = [
"${modulesPath}/profiles/headless.nix"
"${modulesPath}/profiles/minimal.nix"
(import ../modules)
./services/conduit.nix
@ -135,5 +136,8 @@
];
};
# Remove some unneeded packages
environment.defaultPackages = [];
system.stateVersion = "20.09";
}

View File

@ -5,6 +5,9 @@
}: let
inherit (lib) concatStringsSep;
in {
# Sadly, steam-run requires some X libs
environment.noXlibs = false;
systemd.services.starbound = {
description = "Starbound";
after = ["network.target"];