{ inputs, pkgs, pkgs-stable, userSettings, ... }: { nix.extraOptions = '' experimental-features = nix-command flakes ''; home-manager = { config = ./home.nix; backupFileExtension = "hm-bak"; useGlobalPkgs = true; extraSpecialArgs = {inherit inputs pkgs pkgs-stable userSettings;}; }; # Simply install just the packages environment.packages = with pkgs; [ # User-facing stuff that you really really want to have neovim git neofetch # Some common stuff that people expect to have #procps #killall #diffutils #findutils #utillinux #tzdata #hostname #man #gnugrep #gnupg #gnused #gnutar #bzip2 #gzip #xz #zip #unzip ]; environment.etcBackupExtension = ".bak"; system.stateVersion = "24.05"; }