all repos — archive/nixos-configuration @ 0cef6aa80ff7d52afe80b7086cc3452bf020722a

Superseded by nixfiles

Add modules for network configuration

Alan Pearce
commit

0cef6aa80ff7d52afe80b7086cc3452bf020722a

parent

12be12c3130dfcb9190afe35a462e4ba2c850a31

1 file changed, 12 insertions(+), 0 deletions(-)

changed files
A modules/connman.nix
@@ -0,0 +1,12 @@
+{ config, pkgs, ... }: + +{ networking.connman = { + enable = true; + }; + + environment.systemPackages = with pkgs; [ + cmst + connman-notify + connman_dmenu + ]; +}