Files
nixos/Droidnix/assets/flake/machines/traveldroid/top.nix
T
2026-03-06 23:14:09 +01:00

25 lines
565 B
Nix

{
config,
pkgs,
lib,
user,
inputs,
...
}:
{
# Import all other configurations
imports = [
./hardware-configuration.nix
];
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
}