nixos-config/fudo/profiles/desktop.nix

9 lines
155 B
Nix
Raw Normal View History

2020-02-03 17:07:46 -08:00
{ config, lib, pkgs, ... }:
with lib;
2020-06-25 23:05:30 -07:00
mkIf (config.fudo.common.profile == "desktop") {
networking = {
networkmanager.enable = mkForce false;
2020-02-03 17:07:46 -08:00
};
}