Files
nixos/machines/mibook/configuration.nix
T
2023-07-03 11:46:07 +02:00

18 lines
272 B
Nix

{ 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;
};
}