2019-10-21 21:26:44 +08:00
|
|
|
{ host }:
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
2020-04-12 10:03:35 +08:00
|
|
|
let
|
|
|
|
m-labs = import (fetchTarball https://nixbld.m-labs.hk/channel/custom/artiq/full/artiq-full/nixexprs.tar.xz) { inherit pkgs; };
|
2020-06-14 22:51:00 +08:00
|
|
|
pkgs-unstable = import (fetchTarball https://github.com/NixOS/nixpkgs/archive/master.tar.gz) {};
|
2020-04-12 10:03:35 +08:00
|
|
|
in
|
2019-10-21 21:26:44 +08:00
|
|
|
{
|
|
|
|
deployment.targetHost = host;
|
|
|
|
|
2020-06-14 22:52:17 +08:00
|
|
|
disabledModules = [ "security/pam.nix" ];
|
2019-10-21 21:26:44 +08:00
|
|
|
imports =
|
|
|
|
[
|
|
|
|
(./. + "/${host}-hardware-configuration.nix")
|
2020-06-14 22:52:17 +08:00
|
|
|
./pam_p11
|
2019-10-21 21:26:44 +08:00
|
|
|
];
|
|
|
|
|
|
|
|
networking.hostName = host;
|
|
|
|
|
|
|
|
time.timeZone = "Asia/Hong_Kong";
|
|
|
|
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
# $ nix search wget
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
2020-06-14 22:52:17 +08:00
|
|
|
opensc yubikey-manager yubikey-manager-qt
|
2020-06-15 16:55:26 +08:00
|
|
|
wget vim gitAndTools.gitFull firefox chromium thunderbird hexchat
|
|
|
|
usbutils pciutils file lm_sensors audacious acpi
|
2020-05-09 21:52:00 +08:00
|
|
|
gimp imagemagick
|
2020-04-12 10:03:35 +08:00
|
|
|
(python3.withPackages(ps: with ps; [ numpy scipy matplotlib qtconsole regex ]))
|
|
|
|
mosh psmisc libreoffice-fresh
|
2020-04-29 15:23:20 +08:00
|
|
|
gtkwave telnet unzip zip gnupg
|
2020-05-09 21:52:00 +08:00
|
|
|
gnome3.gnome-tweaks
|
|
|
|
jq sublime3 rink qemu_kvm
|
|
|
|
tmux xc3sprog m-labs.openocd screen gdb minicom picocom tigervnc
|
2020-05-10 15:45:26 +08:00
|
|
|
emacs bat ripgrep
|
2020-05-13 14:21:14 +08:00
|
|
|
pkgs-unstable.rust-analyzer
|
2020-05-10 15:45:26 +08:00
|
|
|
(pkgs-unstable.vscode-with-extensions.override {
|
|
|
|
vscodeExtensions = [
|
|
|
|
pkgs-unstable.vscode-extensions.matklad.rust-analyzer
|
|
|
|
];
|
|
|
|
})
|
2020-04-16 13:06:23 +08:00
|
|
|
(import ./fish-nix-shell)
|
2019-10-21 21:26:44 +08:00
|
|
|
];
|
2020-01-06 10:53:45 +08:00
|
|
|
programs.wireshark.enable = true;
|
2019-10-21 21:26:44 +08:00
|
|
|
|
|
|
|
services.openssh.enable = true;
|
2019-11-18 18:59:07 +08:00
|
|
|
services.openssh.forwardX11 = true;
|
2020-05-09 21:52:00 +08:00
|
|
|
services.openssh.passwordAuthentication = false;
|
2020-05-21 12:25:12 +08:00
|
|
|
hardware.u2f.enable = true;
|
|
|
|
services.pcscd.enable = true;
|
|
|
|
programs.ssh.extraConfig =
|
|
|
|
''
|
|
|
|
PKCS11Provider "${pkgs.opensc}/lib/opensc-pkcs11.so"
|
|
|
|
'';
|
2020-06-04 19:34:55 +08:00
|
|
|
programs.ssh.startAgent = true;
|
|
|
|
services.gnome3.gnome-keyring.enable = pkgs.lib.mkForce false;
|
|
|
|
programs.ssh.agentPKCS11Whitelist = "${pkgs.opensc}/lib/opensc-pkcs11.so";
|
2020-06-14 22:52:17 +08:00
|
|
|
security.pam.p11.enable = true;
|
2019-10-21 21:26:44 +08:00
|
|
|
|
|
|
|
# Enable CUPS to print documents.
|
|
|
|
services.printing = {
|
2020-04-16 13:08:33 +08:00
|
|
|
enable = true;
|
2020-05-03 14:15:20 +08:00
|
|
|
extraConf =
|
|
|
|
''
|
|
|
|
Browsing Off
|
|
|
|
BrowseLocalProtocols none
|
|
|
|
'';
|
|
|
|
browsedConf =
|
|
|
|
''
|
|
|
|
BrowseRemoteProtocols none
|
|
|
|
BrowseProtocols none
|
|
|
|
'';
|
2019-10-21 21:26:44 +08:00
|
|
|
};
|
|
|
|
services.avahi = {
|
2020-04-16 13:08:33 +08:00
|
|
|
enable = true;
|
|
|
|
nssmdns = true;
|
2019-10-21 21:26:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
# Enable sound.
|
|
|
|
sound.enable = true;
|
|
|
|
hardware.pulseaudio = {
|
|
|
|
enable = true;
|
|
|
|
extraModules = [ pkgs.pulseaudio-modules-bt ];
|
|
|
|
package = pkgs.pulseaudioFull;
|
|
|
|
};
|
|
|
|
|
|
|
|
i18n.inputMethod = {
|
|
|
|
enabled = "fcitx";
|
|
|
|
fcitx.engines = with pkgs.fcitx-engines; [ table-extra m17n ];
|
|
|
|
};
|
2020-05-13 14:21:14 +08:00
|
|
|
fonts.fonts = [ pkgs.noto-fonts pkgs.noto-fonts-cjk pkgs.noto-fonts-emoji pkgs.noto-fonts-extra pkgs.emacs-all-the-icons-fonts ];
|
2019-10-21 21:26:44 +08:00
|
|
|
|
|
|
|
# Enable the X11 windowing system.
|
|
|
|
services.xserver.enable = true;
|
|
|
|
services.xserver.layout = "us";
|
|
|
|
services.xserver.xkbOptions = "eurosign:e";
|
|
|
|
|
|
|
|
# Enable touchpad support.
|
|
|
|
services.xserver.libinput.enable = true;
|
|
|
|
|
2020-05-09 21:52:00 +08:00
|
|
|
services.xserver.displayManager.gdm.enable = true;
|
|
|
|
services.xserver.displayManager.gdm.autoSuspend = false;
|
2020-06-09 15:48:47 +08:00
|
|
|
powerManagement.enable = false;
|
2020-05-09 21:52:00 +08:00
|
|
|
services.xserver.desktopManager.gnome3.enable = true;
|
2020-06-18 16:06:31 +08:00
|
|
|
environment.gnome3.excludePackages = [ pkgs.epiphany pkgs.gnome3.geary ];
|
2019-10-21 21:26:44 +08:00
|
|
|
|
|
|
|
hardware.bluetooth.enable = true;
|
|
|
|
|
|
|
|
programs.fish.enable = true;
|
2020-04-16 13:06:23 +08:00
|
|
|
programs.fish.promptInit = ''
|
|
|
|
fish-nix-shell --info-right | source
|
|
|
|
'';
|
2020-06-17 12:24:17 +08:00
|
|
|
users.mutableUsers = false;
|
2019-10-21 21:26:44 +08:00
|
|
|
users.defaultUserShell = pkgs.fish;
|
|
|
|
users.extraGroups.plugdev = { };
|
2020-05-09 21:52:00 +08:00
|
|
|
users.extraUsers = (import ./common-users.nix);
|
2019-10-21 21:26:44 +08:00
|
|
|
security.sudo.wheelNeedsPassword = false;
|
2020-04-16 16:14:35 +08:00
|
|
|
services.udev.packages = [ m-labs.openocd ];
|
2019-10-21 21:26:44 +08:00
|
|
|
services.udev.extraRules = ''
|
2020-04-16 16:14:35 +08:00
|
|
|
# leaf maple
|
|
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="1eaf", ATTRS{idProduct}=="0003", MODE="0660", GROUP="plugdev"
|
|
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="1eaf", ATTRS{idProduct}=="0004", MODE="0660", GROUP="plugdev"
|
|
|
|
# glasgow
|
|
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="20b7", ATTRS{idProduct}=="9db1", MODE="0660", GROUP="plugdev"
|
|
|
|
# hackrf
|
|
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="6089", MODE="0660", GROUP="plugdev"
|
|
|
|
# bladerf
|
|
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="2cf0", ATTRS{idProduct}=="5250", MODE="0660", GROUP="plugdev"
|
|
|
|
# personal measurement device
|
|
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="09db", ATTRS{idProduct}=="007a", MODE="0660", GROUP="plugdev"
|
2020-05-13 14:21:34 +08:00
|
|
|
# saleae
|
|
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="0925", ATTRS{idProduct}=="3881", MODE="0660", GROUP="plugdev"
|
|
|
|
# ocean optics
|
|
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="2457", ATTRS{idProduct}=="1002", MODE="0660", GROUP="plugdev"
|
2020-05-21 12:35:46 +08:00
|
|
|
# yubikey
|
|
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="1050", ATTRS{idProduct}=="0116", MODE="0660", GROUP="plugdev"
|
2019-10-21 21:26:44 +08:00
|
|
|
'';
|
|
|
|
|
|
|
|
nix.binaryCachePublicKeys = ["nixbld.m-labs.hk-1:5aSRVA5b320xbNvu30tqxVPXpld73bhtOeH6uAjRyHc="];
|
|
|
|
nix.binaryCaches = ["https://nixbld.m-labs.hk" "https://cache.nixos.org"];
|
|
|
|
nix.sandboxPaths = ["/opt"];
|
|
|
|
|
|
|
|
# This value determines the NixOS release with which your system is to be
|
|
|
|
# compatible, in order to avoid breaking some software such as database
|
|
|
|
# servers. You should change this only after NixOS release notes say you
|
|
|
|
# should.
|
|
|
|
system.stateVersion = "19.03"; # Did you read the comment?
|
|
|
|
}
|