diff options
-rw-r--r-- | hel.nix | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -197,6 +197,11 @@ | |||
197 | 197 | ||
198 | LABEL="mbim_to_qmi_rules_end" | 198 | LABEL="mbim_to_qmi_rules_end" |
199 | ''; | 199 | ''; |
200 | |||
201 | printing = { | ||
202 | enabled = true; | ||
203 | drivers = with pkgs; [ samsung-unified-printing-driver ]; | ||
204 | }; | ||
200 | }; | 205 | }; |
201 | 206 | ||
202 | users = { | 207 | users = { |
@@ -238,6 +243,12 @@ | |||
238 | }; | 243 | }; |
239 | 244 | ||
240 | bluetooth.enable = true; | 245 | bluetooth.enable = true; |
246 | |||
247 | sane = { | ||
248 | enable = true; | ||
249 | extraBackends = with pkgs; [ samsung-unified-linux-driver ]; | ||
250 | configDir = "/etc/sane.d"; | ||
251 | }; | ||
241 | }; | 252 | }; |
242 | 253 | ||
243 | sound.enable = true; | 254 | sound.enable = true; |
@@ -250,5 +261,8 @@ | |||
250 | }; | 261 | }; |
251 | 262 | ||
252 | environment.etc."X11/xorg.conf.d/50-wacom.conf".source = lib.mkForce ./hel/wacom.conf; | 263 | environment.etc."X11/xorg.conf.d/50-wacom.conf".source = lib.mkForce ./hel/wacom.conf; |
264 | |||
265 | environment.etc."sane.d/dll.conf".text = "xerox_mfp"; | ||
266 | environment.etc."sane.d/xerox_mfp.conf".text = "tcp printer.asgard.yggdrasil"; | ||
253 | } | 267 | } |
254 | 268 | ||