Compare commits
No commits in common. "c110948b58a3fe41b1b199587ebefa76eefc7945" and "1c4df6655d9fe82bcbca575cfc42f354b7818fdd" have entirely different histories.
c110948b58
...
1c4df6655d
@ -11,7 +11,7 @@
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
nix.settings.extra-experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
imports = [ ./modules/networking.nix ];
|
||||
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "America/Anchorage";
|
||||
|
@ -63,6 +63,7 @@
|
||||
system = "aarch64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./modules/networking.nix
|
||||
./configuration.nix {
|
||||
services.xserver.videoDrivers = [ "modesetting" ];
|
||||
boot.binfmt.emulatedSystems = ["x86_64-linux"];
|
||||
@ -92,6 +93,7 @@
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./modules/networking.nix
|
||||
./configuration.nix {
|
||||
networking.hostName = "breakdown";
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
@ -114,6 +116,7 @@
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./modules/networking.nix
|
||||
./configuration.nix {
|
||||
services.xserver.videoDrivers = [ "modesetting" "displaylink" ];
|
||||
networking.hostName = "starscream";
|
||||
@ -136,6 +139,7 @@
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./modules/networking.nix
|
||||
./configuration.nix {
|
||||
services.xserver.videoDrivers = [ "modesetting" "displaylink" ];
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
@ -1,9 +1,8 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
|
||||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
networking.wireless.iwd = {
|
||||
enable = true;
|
||||
settings.General.EnableNetworkConfiguration = true;
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user