nixos/systems/gwyn/configuration.nix

23 lines
521 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).
2021-12-28 22:54:35 +01:00
{ ... }:
2021-11-16 20:57:04 +01:00
{
imports =
2021-12-22 16:53:44 +01:00
[
2021-12-22 17:57:34 +01:00
../../modules/desktop.nix
2021-12-22 17:49:02 +01:00
../../hardware/bluetooth
2021-11-16 20:57:04 +01:00
./hardware-configuration.nix
];
networking.hostName = "gwyn"; # Define your hostname.
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-29 19:23:13 +01:00
ZWEILI_HARDWARE = "precision";
2021-11-16 20:57:04 +01:00
};
}