{ config, pkgs, ... }: { imports =[ # names are self explanatory ./adguard ./fonts ./gnupg ./i18n ./nh ./pipewire ./searx ./ssh ./users ./xserver ]; nix = { settings = { # Enable flakes experimental-features = [ "nix-command" "flakes" ]; # Optimize storage auto-optimise-store = true; }; }; # 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 ]; }