fix: cleanup
This commit is contained in:
parent
14dfeec55f
commit
84026223d0
2 changed files with 5 additions and 9 deletions
|
@ -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. It‘s perfectly fine and recommended to leave
|
||||
|
|
|
@ -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 ];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue