diff options
-rw-r--r-- | hel.nix | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -32,6 +32,10 @@ | |||
32 | allowedTCPPorts = [ 22 # ssh | 32 | allowedTCPPorts = [ 22 # ssh |
33 | ]; | 33 | ]; |
34 | }; | 34 | }; |
35 | |||
36 | networkmanager = { | ||
37 | enable = true; | ||
38 | }; | ||
35 | }; | 39 | }; |
36 | 40 | ||
37 | powerManagement.enable = true; | 41 | powerManagement.enable = true; |
@@ -140,6 +144,9 @@ | |||
140 | media = { | 144 | media = { |
141 | members = [ "gkleen" "uucp" ]; | 145 | members = [ "gkleen" "uucp" ]; |
142 | }; | 146 | }; |
147 | networkmanager = { | ||
148 | members = [ "gkleen" ]; | ||
149 | }; | ||
143 | }; | 150 | }; |
144 | }; | 151 | }; |
145 | 152 | ||
@@ -167,11 +174,5 @@ | |||
167 | }; | 174 | }; |
168 | 175 | ||
169 | environment.etc."X11/xorg.conf.d/50-wacom.conf".source = lib.mkForce ./hel/wacom.conf; | 176 | environment.etc."X11/xorg.conf.d/50-wacom.conf".source = lib.mkForce ./hel/wacom.conf; |
170 | |||
171 | environment.wvdial = { | ||
172 | dialerDefaults = '' | ||
173 | Init1 = AT+CGDCONT=1,"IP","internet.t-mobile" | ||
174 | ''; | ||
175 | }; | ||
176 | } | 177 | } |
177 | 178 | ||