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 {
|
nixosSystem {
|
||||||
specialArgs = {inherit inArgs;};
|
specialArgs = {inherit inArgs;};
|
||||||
modules = [
|
modules = [
|
||||||
{networking.hostName = hostname;}
|
|
||||||
(./hosts/${hostname})
|
(./hosts/${hostname})
|
||||||
|
|
||||||
{
|
{
|
||||||
|
networking.hostName = hostname;
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
# settings for stateful data, like file locations and database versions
|
# settings for stateful data, like file locations and database versions
|
||||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||||
|
|
|
@ -2,12 +2,8 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
|
||||||
./mini.nix
|
|
||||||
|
|
||||||
{
|
|
||||||
boot.isContainer = lib.mkDefault true;
|
boot.isContainer = lib.mkDefault true;
|
||||||
boot.kernel.enable = lib.mkDefault false;
|
boot.kernel.enable = lib.mkDefault false;
|
||||||
}
|
|
||||||
];
|
imports = [ ./mini.nix ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue