{ config, lib, pkgs, ... }: { imports = [ ./hardware-configuration.nix ]; networking.hostName = "T430"; # Define a user account. Don't forget to set a password with ‘passwd’. users.users.timmy = { description = "Tim Keller"; isNormalUser = true; extraGroups = [ "wheel" "docker" ]; # Enable ‘sudo’ for the user. packages = with pkgs; [ ]; }; # TODO this does not function boot.initrd.systemd.extraBin = { sh = "${pkgs.dash}/bin/dash"; vim = "${pkgs.neovim}/bin/nvim"; }; # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ]; # Or disable the firewall altogether. # networking.firewall.enable = false; system.stateVersion = "24.05"; }