{ config, pkgs, lib, ... }: { imports =[ # names are self explanatory ./adguard ./doas ./fonts ./gnupg ./i18n ./nh ./pipewire ./searx ./ssh ./sudo ./users ]; nix = { settings = { # Enable flakes experimental-features = [ "nix-command" "flakes" ]; # Optimize storage auto-optimise-store = true; # substituters = lib.mkForce [ ]; # trusted-substituters = lib.mkForce [ ]; # require-sigs = false; }; }; # Allow unfree packages nixpkgs = { config.allowUnfree = true; }; # List packages installed in system profile. # These should be tools in case user tools brake. # To search, run: # $ nix search # or # $ nh search environment.systemPackages = with pkgs; [ alacritty git helix xdg-utils ]; }