{ config, pkgs, user, lib, inputs, ... }: { imports = [ ../git.nix ../backup.nix ./home-configuration.nix ]; nix = { package = pkgs.nixFlakes; extraOptions = "experimental-features = nix-command flakes"; settings.auto-optimise-store = true; gc = { automatic = true; dates = "weekly"; options = "--delete-older-than 7d"; }; }; # Add non-free packages nixpkgs.config.allowUnfree = true; nixpkgs.config.permittedInsecurePackages = [ "electron-25.9.0" "openssl-1.1.1w" ]; nixpkgs.overlays = import ../../../lib/overlays.nix; # Hardware options #hardware.bluetooth.enable = true; #hardware.bluetooth.package = pkgs.bluez; #hardware.sensor.iio.enable = true; #hardware.graphics.enable = true; #hardware.graphics.enable32Bit = true; # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; # Set your time zone. time.timeZone = "America/Los_Angeles"; i18n.defaultLocale = "en_US.UTF-8"; # Define user account. users.users.${user} = { isNormalUser = true; extraGroups = [ "dialout" "wheel" "docker" "libvirtd" ]; shell = pkgs.bash; }; environment.systemPackages = with pkgs; [ inputs.agenix.packages.x86_64-linux.default ]; # Did you read the comment? system.stateVersion = "23.11"; }