# Edit this configuration file to define what should be installed on # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). { config, pkgs, ... }: { # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix ../common.nix ]; networking.hostName = "dmeiburg"; # Define your hostname. networking.firewall.trustedInterfaces = [ "docker0" ]; networking.firewall.allowedTCPPorts = [ 22 80 443 ]; environment.systemPackages = with pkgs; [ gnupg pinentry ]; virtualisation.docker.enable = true; users.users.dm.extraGroups = [ "docker" ]; programs = { gnupg.agent = { enable = true; }; }; system.stateVersion = "23.11"; # Did you read the comment? }