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
]; ];
options = {
wm = lib.mkOption {
type = lib.types.str;
default = "hyprland";
description = "Type of window manager to use";
};
};
config = {
# Minimal settings that must be defined here # Minimal settings that must be defined here
networking.hostName = "traveldroid"; networking.hostName = "traveldroid";
wm.type = "hyprland"; # Define the window manager type here, mangowc will be made possible in the nerar future. wm.type = "hyprland"; # Define the window manager type here, mangowc will be made possible in the near future.
# In generated/top.nix the chpice fopr a window manager will be effectuated };
} }