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 }