From 073d8687ca6f9d91c5c0c3d22a8dc33c886a8033 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Fri, 6 Mar 2026 23:07:45 +0100 Subject: [PATCH] Added system to traveldroid/top.nix and removed hardware.nix from the same --- .../assets/flake/machines/traveldroid/top.nix | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/Droidnix/assets/flake/machines/traveldroid/top.nix b/Droidnix/assets/flake/machines/traveldroid/top.nix index b451e0446..7b98170af 100644 --- a/Droidnix/assets/flake/machines/traveldroid/top.nix +++ b/Droidnix/assets/flake/machines/traveldroid/top.nix @@ -1,11 +1,20 @@ -{ config, pkgs, lib, user, inputs, ... }: +{ + config, + pkgs, + lib, + user, + inputs, + ... +}: { # Import all other configurations imports = [ ./hardware-configuration.nix ]; - # Minimal settings that must be defined here - networking.hostName = "traveldroid"; - wm.type = "hyprland"; # Define the window manager type here, mangowc will be made possible in the nerar future. - # In generated/top.nix the chpice fopr a window manager will be effectuated + + # Minimal settings that must be defined here + networking.hostName = "traveldroid"; + system = "x86_64-linux"; # Define the system explicitly + wm.type = "hyprland"; # Define the window manager type here, mangowc will be made possible in the nerar future. + # In generated/top.nix the chpice fopr a window manager will be effectuated }