18 lines
374 B
Nix
18 lines
374 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
../../../system
|
||
|
../../../system/accounts
|
||
|
../../../system/desktop
|
||
|
../../../system/devices
|
||
|
../../../system/devices/networking/firewall/server
|
||
|
../../../system/programs
|
||
|
../../../system/services
|
||
|
];
|
||
|
|
||
|
networking.hostName = "firefly";
|
||
|
|
||
|
# Force Electron to use Wayland
|
||
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||
|
}
|