nixos/hardware/asus/configuration.nix

24 lines
551 B
Nix
Raw Normal View History

2021-11-16 20:57:04 +01:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
2021-11-22 15:14:14 +01:00
../../common/desktop.nix
2021-11-16 20:57:04 +01:00
./hardware-configuration.nix
];
networking.hostName = "staubfinger"; # Define your hostname.
2021-11-18 21:14:24 +01:00
2021-11-23 21:09:45 +01:00
virtualisation.virtualbox.host.enable = true;
2021-11-16 20:57:04 +01:00
environment.variables = {
2021-11-20 17:16:43 +01:00
ZWEILI_HARDWARE = "asus";
2021-11-16 20:57:04 +01:00
};
}