defenestrate/final/configuration.nix

131 lines
4.0 KiB
Nix
Raw Normal View History

{ config, pkgs, artiq, ... }:
2022-03-15 17:51:21 +08:00
{
imports =
[
./hardware-configuration.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2022-06-11 22:31:48 +08:00
boot.loader.systemd-boot.memtest86.enable = true;
2023-01-04 11:53:41 +08:00
boot.kernelParams = ["intel_idle.max_cstate=1"];
boot.kernelPackages = pkgs.linuxPackages_latest;
2022-03-15 17:51:21 +08:00
hardware.cpu.intel.updateMicrocode = true;
networking.hostName = "artiq";
networking.networkmanager.enable = true;
systemd.suppressedSystemUnits = [
"hibernate.target"
"suspend.target"
"suspend-then-hibernate.target"
"sleep.target"
"hybrid-sleep.target"
"systemd-hibernate.service"
"systemd-hybrid-sleep.service"
"systemd-suspend.service"
"systemd-suspend-then-hibernate.service"
];
console.font = "Lat2-Terminus16";
console.keyMap = "us";
i18n.defaultLocale = "en_US.UTF-8";
2024-10-30 14:10:37 +08:00
time.timeZone = "UTC";
2022-03-15 17:51:21 +08:00
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
wget
vim
gitAndTools.gitFull
usbutils
pciutils
vlc
file
lm_sensors
acpi
imagemagick
firefox
chromium
(artiq.inputs.nixpkgs.legacyPackages.x86_64-linux.python3.withPackages(ps: with ps; [
2022-05-05 19:12:39 +08:00
numpy
scipy
matplotlib
jupyter
pyserial
spyder
artiq.packages.x86_64-linux.artiq
]))
2022-03-17 13:05:59 +08:00
artiq.packages.x86_64-linux.openocd-bscanspi
2022-03-15 17:51:21 +08:00
texlive.combined.scheme-full
psmisc
2022-06-17 16:05:36 +08:00
xc3sprog
2022-03-15 17:51:21 +08:00
gtkwave
unzip
zip
pavucontrol
rink
gimp
gnome3.gnome-tweaks
libreoffice-fresh
2023-09-05 10:33:36 +08:00
vscodium
2022-03-15 17:51:21 +08:00
];
programs.wireshark.enable = true;
programs.wireshark.package = pkgs.wireshark;
hardware.opengl.driSupport = true;
services.openssh.enable = true;
services.openssh.settings.PasswordAuthentication = false;
2022-03-15 17:51:21 +08:00
sound.enable = true;
hardware.pulseaudio.enable = true;
hardware.pulseaudio.package = pkgs.pulseaudioFull;
services.xserver.enable = true;
2024-10-30 14:13:29 +08:00
services.xserver.xkb.layout = "us";
2022-03-15 17:51:21 +08:00
services.xserver.displayManager.gdm.enable = true;
2024-10-30 14:13:29 +08:00
services.displayManager.autoLogin.enable = true;
services.displayManager.autoLogin.user = "rabi";
2022-03-15 17:51:21 +08:00
# https://github.com/NixOS/nixpkgs/issues/103746
systemd.services."getty@tty1".enable = false;
systemd.services."autovt@tty1".enable = false;
services.xserver.desktopManager.gnome.enable = true;
2023-03-14 15:25:12 +08:00
environment.gnome.excludePackages = [ pkgs.epiphany ];
2022-03-15 17:51:21 +08:00
programs.fish.enable = true;
programs.command-not-found.enable = false; # broken with flakes, https://github.com/NixOS/nixpkgs/issues/39789
users.mutableUsers = true;
users.defaultUserShell = pkgs.fish;
2023-01-05 11:42:14 +08:00
users.users.root.initialPassword = "rabi";
2022-03-15 17:51:21 +08:00
users.extraGroups.plugdev = { };
users.extraUsers.rabi = {
isNormalUser = true;
extraGroups = ["networkmanager" "wheel" "plugdev" "dialout" "wireshark"];
2022-06-11 22:31:48 +08:00
initialPassword = "rabi";
2022-03-15 17:51:21 +08:00
openssh.authorizedKeys.keys = [
2024-10-30 14:18:51 +08:00
# m-labs sb
2024-10-30 14:17:14 +08:00
"ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBF/YybP+fQ0J+bNqM5Vgx5vDmVqVWsgUdF1moUxghv7d73GZAFaM6IFBdrXTAa33AwnWwDPMrTgP1V6SXBkb3ciJo/lD1urJGbydbSI5Ksq9d59wvOeANvyWYrQw6+eqTQ=="
2024-10-30 14:18:51 +08:00
# m-labs therobs12
"ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBK1tUg7TtceARRnGI80Ai5kNFolFfZ++LH9v1UoRCiJdxeQWPdNYO0Gj7+ejJvgZXwvN4yHGgcZHraEml4Mj/dKrEMFygfuYLDRmXtPFwX6TNMrWlxMhPzuNY+yCaxlqYg=="
2022-03-15 17:51:21 +08:00
];
};
security.sudo.wheelNeedsPassword = false;
2022-03-17 13:05:59 +08:00
services.udev.packages = [ artiq.packages.x86_64-linux.openocd-bscanspi ];
2022-03-15 17:51:21 +08:00
2023-03-14 15:24:55 +08:00
nix.settings.trusted-public-keys = ["nixbld.m-labs.hk-1:5aSRVA5b320xbNvu30tqxVPXpld73bhtOeH6uAjRyHc="];
nix.settings.substituters = ["https://nixbld.m-labs.hk"];
2022-03-15 17:51:21 +08:00
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
nix.nixPath = [ "nixpkgs=${pkgs.path}" ];
# 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 = "24.05"; # Did you read the comment?
2022-03-15 17:51:21 +08:00
}