nixos/systems/staubfinger/configuration.nix
2022-01-01 15:15:41 +01:00

18 lines
302 B
Nix

{ ... }:
{
imports =
[
# Include the results of the hardware scan.
../../modules/desktop.nix
../../hardware/bluetooth
./hardware-configuration.nix
];
networking.hostName = "staubfinger"; # Define your hostname.
virtualisation.virtualbox.host.enable = true;
}