Compare commits

...

2 Commits

Author SHA1 Message Date
henrov c48289d432 New top.nix 2026-03-06 23:16:03 +01:00
henrov 62c08f617f working on wm.type 2026-03-06 23:14:09 +01:00
@@ -12,8 +12,17 @@
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
# Minimal settings that must be defined here options = {
networking.hostName = "traveldroid"; wm = lib.mkOption {
wm.type = "hyprland"; # Define the window manager type here, mangowc will be made possible in the nerar future. type = lib.types.str;
# In generated/top.nix the chpice fopr a window manager will be effectuated default = "hyprland";
description = "Type of window manager to use";
};
};
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.
};
} }