{ config, lib, pkgs, ... }: { imports = [ ./hardware-configuration.nix ../../configs/base.nix ../../configs/desktop-base.nix ../../configs/desktop-i3.nix ../../configs/flightgear.nix ]; environment.systemPackages = with pkgs; [ killall (python311.withPackages (ps: with ps; [ pyqt5 hidapi ])) ]; systemd.tmpfiles.settings = { i3-config."/home/fly/.config/i3/config"."L+" = { argument = "${../../../config/i3.conf}"; }; restart-sim."/home/fly/restart-sim.sh"."L+" = { argument = "${../../../scripts/restart-sim.sh}"; }; }; services.displayManager = { autoLogin = { enable = true; user = "fly"; }; }; boot.loader.grub.enable = true; boot.loader.grub.efiSupport = true; boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only networking.hostName = "simhost1"; system.stateVersion = "23.11"; # Did you read the comment? }