config/machines/thor/configuration.nix

19 lines
226 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../modules
];
riley = {
ide = true;
gui = true;
};
networking = {
hostName = "thor";
interfaces.enp9s0.useDHCP = true;
};
}