1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

default config for multi-machine added

Signed-off-by: Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>
This commit is contained in:
Stefan Ellmauthaler 2021-10-08 10:54:39 +02:00
parent b001131f7a
commit 59f8e9f21a
2 changed files with 6 additions and 1 deletions

View File

@ -8,6 +8,7 @@
imports =
[ # Include the results of the hardware scan.
./machine/current/hardware-configuration.nix
./machine/current/default.nix
./programs/emacs
./programs/aspell.nix
];
@ -17,7 +18,7 @@
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
networking.hostName = "nucturne"; # Define your hostname.
# networking.hostName = "nucturne"; # Define your hostname. - done in machine/current/default.nix
#networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.networkmanager.enable = true;
#networking.networkmanager.unmanaged = [ "enp0s20f0u4u1u3" ];

View File

@ -0,0 +1,4 @@
{ config, pkgs, ...}:
{
networking.hostName = "nucturne"; # define the hostname
}