diff --git a/Droidnix/assets/flake/machines/traveldroid/top.nix b/Droidnix/assets/flake/machines/traveldroid/top.nix index 9d88454b2..6a37b602d 100644 --- a/Droidnix/assets/flake/machines/traveldroid/top.nix +++ b/Droidnix/assets/flake/machines/traveldroid/top.nix @@ -12,13 +12,17 @@ ./hardware-configuration.nix ]; - options.wm = lib.mkOption { + options = { + wm = lib.mkOption { type = lib.types.str; default = "hyprland"; description = "Type of window manager to use"; + }; + }; - # 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 + config = { + # 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 near future. + }; }