created second machine "mibook" for testing

This commit is contained in:
fmarkwitz
2023-07-03 11:46:07 +02:00
parent beddbee7c3
commit bd0d018748
5 changed files with 69 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
{ config, pkgs, lib, ... }:
{
imports = [
./disks.nix
./hardware-configuration.nix
./environments.nix
# ./system.nix use docker here
];
networking.hostName = "mibook";
system = {
stateVersion = "23.05";
autoUpgrade.enable = true;
};
}