{ config, pkgs, inputs, ... }: { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix ../../modules/options.nix ../../modules/nixos/common.nix ]; # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; networking.hostName = "framework"; # Define your hostname. home-manager = { extraSpecialArgs = { inherit inputs pkgs; myOptions = config.myOptions; }; users."bruhng" = import ./home.nix; }; system.stateVersion = "25.05"; # Do not channge }