9 lines
129 B
Nix
9 lines
129 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
{
|
|
imports = [ ./common-ui.nix ];
|
|
|
|
networking.networkmanager.enable = mkForce false;
|
|
}
|