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