nixos-config/config/profiles/desktop.nix
2021-02-23 12:58:29 -08:00

8 lines
150 B
Nix

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