From b2aa339593bff3851985d38a64910bc9370117dc Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Tue, 20 Nov 2018 22:30:30 +0100 Subject: [PATCH] add config for japanese typing, wireshark, bluetooth headphones --- roles/workstation.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/roles/workstation.nix b/roles/workstation.nix index 2258666..e0cd4e1 100644 --- a/roles/workstation.nix +++ b/roles/workstation.nix @@ -3,7 +3,7 @@ imports = [ ]; - users.extraUsers.yorick.extraGroups = ["input"]; + users.extraUsers.yorick.extraGroups = [ "input" "wireshark" ]; services.printing = { enable = true; drivers = [ pkgs.gutenprint ]; @@ -19,7 +19,17 @@ # yubikey hardware.u2f.enable = true; services.pcscd.enable = true; + sound.enable = true; #environment.systemPackages = [pkgs.yubikey-manager]; + fonts.fonts = [ pkgs.emojione ]; + # bluetooth headphones + hardware.pulseaudio.package = pkgs.pulseaudioFull; + # japanese typing + i18n.inputMethod = { + enabled = "fcitx"; + fcitx.engines = with pkgs.fcitx-engines; [ mozc ]; + }; + programs.wireshark.enable = true; nix = { gc.automatic = pkgs.lib.mkOverride 30 false; binaryCaches = [