fix: cleanup

This commit is contained in:
Ranomier 2025-05-05 08:33:09 +02:00
parent 14dfeec55f
commit 84026223d0
2 changed files with 5 additions and 9 deletions

View file

@ -8,10 +8,10 @@ in
nixosSystem {
specialArgs = {inherit inArgs;};
modules = [
{networking.hostName = hostname;}
(./hosts/${hostname})
{
networking.hostName = hostname;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave

View file

@ -2,12 +2,8 @@
lib,
...
}: {
imports = [
./mini.nix
boot.isContainer = lib.mkDefault true;
boot.kernel.enable = lib.mkDefault false;
{
boot.isContainer = lib.mkDefault true;
boot.kernel.enable = lib.mkDefault false;
}
];
imports = [ ./mini.nix ];
}